| 12345678910111213141516171819202122232425262728 |
- [package]
- name = "genevd"
- description = "Generic Event example daemon"
- version = "0.4.1"
- edition = "2021"
- authors = ["Dyne.org foundation <foundation@dyne.org>"]
- license = "AGPL-3.0-only"
- homepage = "https://dark.fi"
- repository = "https://github.com/darkrenaissance/darkfi"
- [dependencies]
- darkfi = {path = "../../../", features = ["event-graph", "rpc", "bs58", "util"]}
- darkfi-serial = {path = "../../../src/serial"}
- async-std = {version = "1.12.0", features = ["attributes"]}
- async-trait = "0.1.64"
- ctrlc = { version = "3.2.5", features = ["termination"] }
- easy-parallel = "3.2.0"
- simplelog = "0.12.0"
- smol = "1.3.0"
- log = "0.4.17"
- url = "2.3.1"
- # Argument parsing
- serde = {version = "1.0.152", features = ["derive"]}
- serde_json = "1.0.93"
- structopt = "0.3.26"
- structopt-toml = "0.5.1"
|