Cargo.toml
1 [package] 2 name = "generic-node" 3 version = "0.4.1" 4 description = "Generic node daemon to test out design choices before integrating them to core nodes." 5 authors = ["Dyne.org foundation <foundation@dyne.org>"] 6 repository = "https://codeberg.org/darkrenaissance/darkfi" 7 license = "AGPL-3.0-only" 8 edition = "2021" 9 10 [workspace] 11 12 [dependencies] 13 darkfi = {path = "../../../", features = ["async-daemonize", "net"]} 14 darkfi-serial = {version = "0.5.0", features = ["async"]} 15 rand = "0.8.5" 16 17 # Daemon 18 easy-parallel = "3.3.1" 19 tracing = "0.1.41" 20 tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] } 21 tracing-appender = "0.2.3" 22 signal-hook-async-std = "0.3.0" 23 signal-hook = "0.3.18" 24 smol = "2.0.2" 25 26 # Argument parsing 27 serde = {version = "1.0.219", features = ["derive"]} 28 structopt = "0.3.26" 29 structopt-toml = "0.5.1"