-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
60 lines (56 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "shadow-harvester"
version = "0.3.0"
edition = "2024"
license = "MIT Or Apache-2.0"
repository = "https://github.com/disassembler/shadowharvester"
# --- LIBRARY TARGET CONFIGURATION ---
[lib]
# The name of the library artifact produced (the .rlib file)
name = "shadow_harvester_lib"
# The path to your library code
path = "src/lib.rs"
test = true
# --- BINARY TARGET CONFIGURATION ---
[[bin]]
# Sets the executable name (what the user runs)
name = "shadow-harvester"
# Points to the main function for the executable
path = "src/main.rs"
bench = false
harness = false
test = false
[dependencies]
cryptoxide = "~0.5.1"
fmt = "0.1.0"
getrandom = "0.3"
hex = "0.4"
hex-literal = "1.0.0"
indicatif = "0.17"
clap = { version = "4.5", features = ["derive"] }
reqwest = { version = "0.11", features = ["json", "blocking"] } # FIX: 'blocking' feature is required for reqwest::blocking::Client
serde = { version = "1.0", features = ["derive"] } # FIX: 'derive' feature is required for #[derive(Deserialize)]
serde_json = "1.0" # Added for completeness, often required with serde
pallas-addresses = "0.33"
pallas-crypto = "0.33"
rand_core = { version = "0.6", features = ["std"] }
pallas-configs = "0.33.0"
pallas = "0.33.0"
pallas-codec = "0.33.0"
minicbor = { version = "0.25.1", features = ["derive"] }
bip39 = { version = "2.2.0", features = ["alloc"] }
ed25519-bip32 = "0.4.1"
chrono = "0.4.42"
mpsc = "0.2.6"
sled = "0.34.7"
num-integer = "0.1.46"
tungstenite = "0.28.0"
warp = "0.3"
tokio = { version = "1", features = ["full"] }
regex = "1.12.2"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
randomx-rs = "1.3"
hex = "0.4"
indicatif = "0.17"
getrandom = "0.3"