-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
51 lines (48 loc) · 1.71 KB
/
Cargo.toml
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
[package]
name = "cncli"
version = "6.5.1"
authors = ["Andrew Westberg <[email protected]>"]
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 = "1.3.3"
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.30"
#pallas-math = "0.30"
#pallas-network = "0.30"
#pallas-traverse = "0.30"
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", features = ["std"] }
redb = "2.2.0"
regex = "1.11"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls-webpki-roots", "rustls-tls", "json", "gzip", "deflate"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde-aux = "4.5"
serde_cbor = "0.11"
serde_json = "1.0"
socket2 = "0.5"
structopt = "0.3"
rand = "0.8"
rayon = "1.10"
itertools = "0.13"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "net", "io-util", "time", "sync", "macros"] }
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "1", features = ["v7"] }
log = "0.4.22"
[build-dependencies]
built = { version = "0.7", features = ["git2"] }