keyfork/keyforkd/Cargo.toml

38 lines
1.4 KiB
TOML
Raw Normal View History

2023-08-25 06:32:21 +00:00
[package]
name = "keyforkd"
version = "0.1.0"
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]
2023-08-25 09:27:16 +00:00
keyfork-derive-util = { version = "0.1.0", path = "../keyfork-derive-util" }
2023-08-25 06:32:21 +00:00
keyfork-frame = { version = "0.1.0", path = "../keyfork-frame" }
keyfork-mnemonic-util = { version = "0.1.0", path = "../keyfork-mnemonic-util" }
2024-01-10 05:23:47 +00:00
keyfork-derive-path-data = { version = "0.1.0", path = "../keyfork-derive-path-data" }
keyforkd-models = { version = "0.1.0", path = "../keyforkd-models" }
# 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"] }
[dev-dependencies]
hex-literal = "0.4.1"
keyfork-slip10-test-data = { path = "../keyfork-slip10-test-data" }