bin/tau: use new event_graph code

This commit is contained in:
Dastan-glitch
2023-10-13 15:21:15 +03:00
committed by parazyd
parent 359c914eef
commit 7a9604d968
4 changed files with 125 additions and 79 deletions

View File

@@ -17,22 +17,35 @@ name = "taud"
path = "src/main.rs"
[dependencies]
darkfi = {path = "../../../", features = ["bs58", "async-daemonize", "event-graph", "rpc"]}
darkfi-serial = {path = "../../../src/serial"}
darkfi = { path = "../../../", features = [
"bs58",
"async-daemonize",
"event-graph",
"rpc",
] }
darkfi-serial = { path = "../../../src/serial" }
# Event Graph DB
sled = "0.34.7"
# Crypto
blake3 = "1.4.1"
crypto_box = { version = "0.9.1", features = ["std", "chacha20"] }
rand = "0.8.5"
# Encoding and parsing
bs58 = "0.5.0"
hex = "0.4.3"
toml = "0.7.6"
# Misc
async-trait = "0.1.73"
bs58 = "0.5.0"
chrono = "0.4.26"
crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
futures = "0.3.28"
hex = "0.4.3"
libc = "0.2.147"
log = "0.4.20"
rand = "0.8.5"
thiserror = "1.0.47"
tinyjson = "2.5.1"
toml = "0.7.6"
url = "2.4.1"
# Daemon
@@ -43,6 +56,6 @@ simplelog = "0.12.1"
smol = "1.3.0"
# Argument parsing
serde = {version = "1.0.188", features = ["derive"]}
serde = { version = "1.0.188", features = ["derive"] }
structopt = "0.3.26"
structopt-toml = "0.5.1"