forked from cardano-community/cncli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (50 loc) · 1.51 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
52
53
54
55
56
[package]
name = "cncli"
version = "6.2.0"
authors = ["Andrew Westberg <[email protected]>"]
edition = "2018"
build = "build.rs"
links = "libsodium"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = "1.12"
bigdecimal = "0.4"
num-bigint = "0.4.5"
num-rational = "0.4.2"
blake2b_simd = "1.0"
byteorder = "1.5"
#pallas-network = { git = "https://github.com/AndrewWestberg/pallas", rev="35f693c57eec5f70c4f8e2f6a24445b14c6104b9" }
#pallas-traverse = { git = "https://github.com/AndrewWestberg/pallas", rev="35f693c57eec5f70c4f8e2f6a24445b14c6104b9" }
pallas-network = "0.27"
pallas-traverse = "0.27"
chrono = "0.4.38"
chrono-tz = "0.9"
futures = "0.3"
hex = "0.4"
libc = "0.2"
regex = "1.10"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls-webpki-roots", "rustls-tls", "json", "gzip", "deflate"] }
rusqlite = { version = "0.31", 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"
# logging
log = "0.4"
env_logger = "0.11"
pretty_env_logger = "0.5"
[build-dependencies]
autotools = "0.2"
pkg-config = "0.3"
built = { version = "0.7", features = ["git2"] }
[features]
libsodium-sys = []