-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (37 loc) · 1.41 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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 <[email protected]>"]
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