librustzcash/zcash_client_sqlite/Cargo.toml

34 lines
840 B
TOML
Raw Normal View History

[package]
name = "zcash_client_sqlite"
description = "An SQLite-based Zcash light client"
2020-08-22 04:14:14 -07:00
version = "0.1.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
bech32 = "0.7"
bs58 = { version = "0.3", features = ["check"] }
ff = "0.8"
group = "0.8"
jubjub = "0.5"
protobuf = "2.15"
rand_core = "0.5.1"
rusqlite = { version = "0.23", features = ["bundled"] }
time = "0.1"
2020-08-22 04:09:27 -07:00
zcash_client_backend = { version = "0.3", path = "../zcash_client_backend" }
2020-08-22 04:06:21 -07:00
zcash_primitives = { version = "0.3", path = "../zcash_primitives" }
[dev-dependencies]
rand_core = "0.5.1"
tempfile = "3"
2020-08-22 04:07:02 -07:00
zcash_proofs = { version = "0.3", path = "../zcash_proofs" }
[features]
mainnet = []