[package] name = "keyforkd" version = "0.1.1" edition = "2021" license = "AGPL-3.0-only" # 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] keyfork-bug = { version = "0.1.0", path = "../../util/keyfork-bug", registry = "distrust" } keyfork-derive-util = { version = "0.2.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.3.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.2.0", path = "../keyforkd-models", registry = "distrust" } # Not personally audited bincode = "1.3.3" # Ecosystem trust, not personally audited 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"] } tempfile = { version = "3.10.0", default-features = false } [dev-dependencies] hex-literal = "0.4.1" keyfork-slip10-test-data = { path = "../../util/keyfork-slip10-test-data", registry = "distrust" }