forked from speedwing/cncli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.4 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 = "2.1.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.8.0"
bigdecimal = "0.2.0"
num-bigint = "0.3.1"
blake2b_simd = "0.5.11"
byteorder = "1.3.4"
cardano_ouroboros_network = "0.2.2"
#cardano_ouroboros_network = { git = "https://github.com/AndrewWestberg/rust-cardano-ouroboros-network", rev = "524b44bcad1b17d5570a42e3b5c9651d38db55ae" }
#cardano_ouroboros_network = { path = "/home/westbam/Development/rust-cardano-ouroboros-network" }
chrono = "0.4.19"
chrono-tz = "0.5.3"
futures = "0.3.8"
hex = "0.4.2"
libc = "0.2.80"
net2 = "0.2.35"
regex = "1.4.2"
reqwest = { version = "0.11.0", features = ["blocking"] }
rug = { version = "1.11.0", default-features = false, features = ["integer", "rational", "float", "serde"] }
rusqlite = { version = "0.24.1", features = ["bundled"] }
serde = { version = "1.0.117", features = ["derive"] }
serde-aux = "2.1.1"
serde_cbor = "0.11.1"
serde_json = "1.0.62"
structopt = "0.3.20"
rayon = "1.5.0"
itertools = "0.10.0"
# logging
log = "0.4.11"
env_logger = "0.8.1"
pretty_env_logger = "0.4.0"
# fix cross-compile
gmp-mpfr-sys = { version="1.4", features=["force-cross"] }
[build-dependencies]
autotools = "0.2"
pkg-config = "0.3.16"
[features]
libsodium-sys = []