[package] name = "daemon" version = "0.1.0" edition = "2018" [dependencies] anyhow = "1" atty = "0.2" bdk = { git = "https://github.com/bitcoindevkit/bdk/" } cfd_protocol = { path = "../cfd_protocol" } clap = "3.0.0-beta.4" futures = { version = "0.3", default-features = false } hex = "0.4" hkdf = "0.11" rand = "0.6" rocket = { version = "0.5.0-rc.1", features = ["json"] } rocket-basicauth = { version = "2", default-features = false } rocket_db_pools = { git = "https://github.com/SergioBenitez/Rocket", features = ["sqlx_sqlite"] } rust-embed = "6.2" rust_decimal = { version = "1.16", features = ["serde-float", "serde-arbitrary-precision"] } rust_decimal_macros = "1.16" serde = { version = "1", features = ["derive"] } serde_json = "1" serde_with = { version = "1", features = ["macros"] } sha2 = "0.9" sqlx = { version = "0.5", features = ["offline"] } thiserror = "1" tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "net"] } tokio-util = { version = "0.6", features = ["codec"] } tracing = { version = "0.1" } tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log", "json"] } uuid = { version = "0.8", features = ["serde", "v4"] } [[bin]] name = "taker" path = "src/taker.rs" [[bin]] name = "maker" path = "src/maker.rs" [dev-dependencies] tempfile = "3"