/ example / p2pdebug / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "p2pdebug"
 3  version = "0.4.1"
 4  homepage = "https://dark.fi"
 5  authors = ["Dyne.org foundation <foundation@dyne.org>"]
 6  repository = "https://codeberg.org/darkrenaissance/darkfi"
 7  license = "AGPL-3.0-only"
 8  edition = "2021"
 9  
10  [workspace]
11  
12  [dependencies]
13  darkfi = {path = "../../", features = ["net", "rpc"]}
14  # Async
15  smol = "2.0.2"
16  futures = "0.3.31"
17  async-std = "1.13.1"
18  async-trait = "0.1.88"
19  async-channel = "2.5.0"
20  async-executor = "1.13.2"
21  easy-parallel = "3.3.1"
22  
23  # Crypto
24  rand = "0.8.5"
25  
26  # Misc
27  clap = {version = "4.4.11", features = ["derive"]}
28  log = "0.4.27"
29  simplelog = "0.12.2"
30  fxhash = "0.2.1"
31  url = "2.5.4"
32  
33  # Encoding and parsing
34  serde_json = "1.0.142"
35  
36  [lints]
37  workspace = true
38