forked from nomic-io/nomic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1.07 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
[package]
name = "nomic"
version = "1.0.0"
authors = [ "The Nomic Team <[email protected]>" ]
edition = "2018"
[dependencies]
bitcoin = "0.27.1"
bitcoind = { version = "0.21.0", features = ["22_0"], optional = true }
bitcoincore-rpc = { version = "0.14.0", optional = true }
orga = { git = "https://github.com/nomic-io/orga.git", rev = "3e88fabcb548895fad1652f0c9f2ee96ca7de0b5", features = ["merk-verify"] }
thiserror = "1.0.30"
ed = { git = "https://github.com/nomic-io/ed.git", rev = "6d327abacf0c6068ceaed36fb67410ae65f2abbe"}
clap = { version = "3.0.0-rc.4", features = ["derive"], optional = true }
tokio = { version = "1.14.0", features = ["full"], optional = true }
base64 = "0.13.0"
js-sys = { version = "0.3.55" }
serde = "1.0.133"
serde_json = "1.0.74"
csv = { version = "1.1.6", optional = true }
bech32 = { version = "0.8.1", optional = true }
[dev-dependencies]
chrono = "0.4.0"
bitcoin_hashes = "0.10.0"
serde_json = "1.0.68"
serde = "1.0.130"
[features]
default = ["full"]
full = ["bitcoind", "bitcoincore-rpc", "clap", "tokio", "orga/merk-full", "orga/abci", "csv", "bech32"]