# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [package] name = "kibank" version = "1.1.2" authors = ["Sheldon Young "] description = "Tool for Kilohearts banks" license = "Apache-2.0" homepage = "https://github.com/softdevca/kibank" repository = "https://github.com/softdev.ca/kibank" documentation = "https://docs.rs/kibank" keywords = ["cli", "audio", "synth", "presets"] edition = "2021" rust-version = "1.61" publish = true [features] default = ["application"] # Require for the command line interface. Should be disabled when depending on # this crate as a library. For example, to use as a library in a Cargo.toml: # `kibank = { version = "...", default-features = false }` application = ["anyhow", "clap", "os_str_bytes", "walkdir"] [dependencies] anyhow = { version = "1.0", optional = true } byteorder = "1.5" clap = { version = "4.5", optional = true, default-features = false, features = ["std", "cargo", "color", "env", "suggestions", "wrap_help"] } log = "0.4" os_str_bytes = { version = "6.6", optional = true, features = ["conversions"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simplelog = "0.12" walkdir = { version = "2.4", optional = true } [dev-dependencies] assert_cmd = "2.0" assert_fs = "1.1" predicates = "3.1" [package.metadata.docs.rs] # Pass `--no-default-features` to Cargo on docs.rs no-default-features = true