keyfork/crates/daemon/keyforkd/Cargo.toml

40 lines
1.7 KiB
TOML
Raw Normal View History

2023-08-25 06:32:21 +00:00
[package]
name = "keyforkd"
version = "0.1.1"
2023-08-25 06:32:21 +00:00
edition = "2021"
2023-11-15 04:19:30 +00:00
license = "AGPL-3.0-only"
2023-08-25 06:32:21 +00:00
# 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]
2024-02-23 02:58:49 +00:00
keyfork-bug = { version = "0.1.0", path = "../../util/keyfork-bug", registry = "distrust" }
keyfork-derive-util = { version = "0.1.0", path = "../../derive/keyfork-derive-util", registry = "distrust" }
keyfork-frame = { version = "0.1.0", path = "../../util/keyfork-frame", features = ["async"], registry = "distrust" }
keyfork-mnemonic-util = { version = "0.2.0", path = "../../util/keyfork-mnemonic-util", registry = "distrust" }
keyfork-derive-path-data = { version = "0.1.0", path = "../../derive/keyfork-derive-path-data", registry = "distrust" }
keyforkd-models = { version = "0.1.0", path = "../keyforkd-models", registry = "distrust" }
# Not personally audited
bincode = "1.3.3"
# Ecosystem trust, not personally audited
2023-08-25 06:32:21 +00:00
tokio = { version = "1.32.0", features = ["io-util", "macros", "rt", "io-std", "net", "fs", "signal"] }
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"] }
tower = { version = "0.4.13", features = ["tokio", "util"] }
# Personally audited
thiserror = "1.0.47"
serde = { version = "1.0.186", features = ["derive"] }
2024-02-12 06:28:04 +00:00
tempfile = { version = "3.10.0", default-features = false }
[dev-dependencies]
hex-literal = "0.4.1"
2024-02-23 02:58:49 +00:00
keyfork-slip10-test-data = { path = "../../util/keyfork-slip10-test-data", registry = "distrust" }