| 12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "lilith"
- description = "Daemon that spawns P2P seeds"
- version = "0.3.0"
- edition = "2021"
- authors = ["darkfi <dev@dark.fi>"]
- license = "AGPL-3.0-only"
- homepage = "https://dark.fi"
- repository = "https://github.com/darkrenaissance/darkfi"
- keywords = []
- categories = []
- [dependencies]
- darkfi = {path = "../../", features = ["net", "rpc"]}
- # Async
- async-std = "1.12.0"
- async-trait = "0.1.57"
- ctrlc = { version = "3.2.3", features = ["termination"] }
- easy-parallel = "3.2.0"
- smol = "1.2.5"
- # Misc
- fxhash = "0.2.1"
- log = "0.4.17"
- serde_json = "1.0.85"
- simplelog = "0.12.0"
- url = "2.3.1"
- # Argument parsing
- serde = {version = "1.0.145", features = ["derive"]}
- structopt = "0.3.26"
- structopt-toml = "0.5.1"
- toml = "0.5.9"
|