/ bin / genev / genev-cli / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "genev"
 3  description = "Generic Event example CLI"
 4  version = "0.5.0"
 5  edition = "2021"
 6  authors = ["Dyne.org foundation <foundation@dyne.org>"]
 7  license = "AGPL-3.0-only"
 8  homepage = "https://dark.fi"
 9  repository = "https://codeberg.org/darkrenaissance/darkfi"
10  
11  [dependencies]
12  genevd = {path = "../genevd"}
13  
14  darkfi = {path = "../../../", features = ["event-graph", "rpc", "bs58"]}
15  darkfi-serial = "0.5.0"
16  
17  smol = "2.0.2"
18  clap = {version = "4.4.11", features = ["derive"]}
19  tracing = "0.1.41"
20  tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
21  tinyjson = "2.5.1"
22  url = "2.5.4"
23  
24  [lints]
25  workspace = true