| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- [package]
- name = "evgrd"
- description = "Event graph daemon"
- version = "0.5.1"
- edition = "2021"
- authors = ["Dyne.org foundation <foundation@dyne.org>"]
- license = "AGPL-3.0-only"
- homepage = "https://dark.fi"
- repository = "https://codeberg.org/darkrenaissance/darkfi"
- [[bin]]
- name = "evgrd"
- path = "bin/evgrd.rs"
- required-features = ["build-daemon"]
- [[example]]
- name = "recv"
- path = "example/recv.rs"
- [[example]]
- name = "send"
- path = "example/send.rs"
- [dependencies]
- darkfi = {path = "../../", features = ["event-graph"]}
- darkfi-serial = {version = "0.4.2", features = ["async"]}
- # Event Graph DB
- sled-overlay = "0.1.6"
- # Crypto
- blake3 = "1.8.1"
- # Misc
- log = "0.4.27"
- url = "2.5.4"
- # Daemon
- smol = "2.0.2"
- # evgrd deps
- async-trait = {version = "0.1.88", optional = true}
- futures = {version = "0.3.31", optional = true}
- semver = {version = "1.0.26", optional = true}
- easy-parallel = {version = "3.3.1", optional = true}
- signal-hook-async-std = {version = "0.2.2", optional = true}
- signal-hook = {version = "0.3.17", optional = true}
- simplelog = {version = "0.12.2", optional = true}
- serde = {version = "1.0.219", features = ["derive"], optional = true}
- structopt = {version = "0.3.26", optional = true}
- structopt-toml = {version = "0.5.1", optional = true}
- [features]
- build-daemon = [
- "darkfi/async-daemonize",
- "async-trait",
- "futures",
- "semver",
- "easy-parallel",
- "signal-hook-async-std",
- "signal-hook",
- "simplelog",
- "serde",
- "structopt",
- "structopt-toml",
- ]
- #[lints]
- #workspace = true
- # Temp stuff
- [workspace]
|