keyfork/keyforkd/Cargo.toml

24 lines
977 B
TOML
Raw Normal View History

2023-08-25 06:32:21 +00:00
[package]
name = "keyforkd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["tracing", "multithread"]
tracing = ["tower/tracing", "tokio/tracing", "dep:tracing", "dep:tracing-subscriber", "dep:tracing-error"]
multithread = ["tokio/rt-multi-thread"]
[dependencies]
dirs = "5.0.1"
keyfork-frame = { version = "0.1.0", path = "../keyfork-frame" }
keyfork-mnemonic-util = { version = "0.1.0", path = "../keyfork-mnemonic-util" }
minicbor = { version = "0.19.1", features = ["derive", "std"] }
thiserror = "1.0.47"
tokio = { version = "1.32.0", features = ["io-util", "macros", "rt", "io-std", "net", "fs", "signal"] }
tower = { version = "0.4.13", features = ["tokio", "util"] }
tracing = { version = "0.1.37", optional = true }
tracing-error = { version = "0.2.0", optional = true }
tracing-subscriber = { version = "0.3.17", optional = true, features = ["env-filter"] }