-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (49 loc) · 1.81 KB
/
Cargo.toml
File metadata and controls
52 lines (49 loc) · 1.81 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
[package]
name = "cncli"
version = "6.7.0"
authors = ["Andrew Westberg <andrewwestberg@gmail.com>"]
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = "1.13"
bech32 = "0.11"
bincode = "2"
byteorder = "1.5"
#pallas-crypto = { git = "https://github.com/txpipe/pallas", rev = "b641c4e6862be447336429878f4e0a57a2281588" }
#pallas-math = { git = "https://github.com/txpipe/pallas", rev = "b641c4e6862be447336429878f4e0a57a2281588" }
#pallas-network = { git = "https://github.com/txpipe/pallas", rev = "b641c4e6862be447336429878f4e0a57a2281588" }
#pallas-traverse = { git = "https://github.com/txpipe/pallas", rev = "b641c4e6862be447336429878f4e0a57a2281588" }
pallas-crypto = "0.33.0"
pallas-math = "0.33.0"
pallas-network = "0.33.0"
pallas-traverse = "0.33.0"
amaru-ouroboros = { git = "https://github.com/pragma-org/amaru", rev = "8a4f994" }
chrono = "0.4"
chrono-tz = "0.10"
futures = "0.3"
hex = "0.4"
#malachite-base = "0.4.16"
#malachite = "0.4.16"
minicbor = { version = "0.25.1", features = ["std", "half", "derive"] }
redb = "2.6.3"
regex = "1.11"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls-webpki-roots", "rustls-tls", "json", "gzip", "deflate"] }
rusqlite = { version = "0.37", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde-aux = "4.5"
serde_cbor = "0.11"
serde_json = "1.0"
socket2 = "0.6"
structopt = "0.3"
rand = "0.9"
rayon = "1.10"
itertools = "0.14"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "net", "io-util", "time", "sync", "macros"] }
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "1", features = ["v7"] }
log = "0.4"
[build-dependencies]
built = { version = "0.8", features = ["git2"] }