diff --git a/Cargo.toml b/Cargo.toml index 4fddb38..7b80d95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bliplib" -version = "0.0.2" +version = "0.1.0" edition = "2024" authors = ["Breval Ferrari "] description = "The Bizarre Language for Intermodulation Programming (BLIP)" @@ -12,7 +12,7 @@ repository = "https://gitdab.com/breval/blip" name = "bliplib" [dependencies] -anyhow = { version = "1.0", optional = true } +anyhow = { version = "1.0" } cfg-if = "1" clap = { version = "4.5.39", features = ["derive"], optional = true } derive-new = "0.7" @@ -35,8 +35,8 @@ log = "0" env_logger = { version = "0", optional = true } [features] -default = ["bin", "all-formats"] -bin = ["anyhow", "clap", "rodio", "dasp_sample", "env_logger"] +default = ["all-formats"] +bin = ["clap", "rodio", "dasp_sample", "env_logger"] all-formats = ["mp3", "wav", "flac", "raw"] mp3 = ["mp3lame-encoder"] wav = ["hound"]