/ bin / explorer / explorerd / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "explorerd"
 3  version = "0.5.0"
 4  description = "Daemon to listen for new blocks from darkfid and store them in an easily accessible format for further usage."
 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  [dependencies]
11  # Darkfi
12  darkfi = {path = "../../../", features = ["async-daemonize", "validator", "rpc"]}
13  darkfi-sdk = {path = "../../../src/sdk"}
14  darkfi-serial = "0.5.0"
15  
16  # JSON-RPC
17  async-trait = "0.1.88"
18  tinyjson = "2.5.1"
19  url = "2.5.4"
20  
21  # Daemon
22  easy-parallel = "3.3.1"
23  signal-hook-async-std = "0.3.0"
24  signal-hook = "0.3.18"
25  tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
26  tracing-appender = "0.2.3"
27  smol = "2.0.2"
28  
29  # Argument parsing
30  serde = {version = "1.0.219", features = ["derive"]}
31  structopt = "0.3.26"
32  structopt-toml = "0.5.1"
33  
34  # Database
35  sled-overlay = "0.1.10"
36  
37  # Misc
38  blake3 = "1.8.2"
39  tracing = "0.1.41"
40  lazy_static = "1.5.0"
41  tar = "0.4.44"
42  toml = "0.9.5"
43  thiserror = "2.0.12"
44  
45  # Testing
46  tempdir = "0.3.7"