librustzcash/zcash_client_sqlite/Cargo.toml

35 lines
934 B
TOML
Raw Normal View History

[package]
name = "zcash_client_sqlite"
description = "An SQLite-based Zcash light client"
2021-03-25 22:56:07 -07:00
version = "0.3.0"
authors = [
"Jack Grigg <jack@z.cash>",
2021-04-08 09:12:47 -07:00
"Kris Nuttycombe <kris@electriccoin.co>"
]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
2021-03-25 17:31:20 -07:00
bech32 = "0.8"
2021-01-26 15:03:30 -08:00
bs58 = { version = "0.4", features = ["check"] }
2021-01-26 14:48:11 -08:00
ff = "0.9"
group = "0.9"
jubjub = "0.6"
2021-01-19 11:59:18 -08:00
protobuf = "2.20"
2021-01-26 14:48:11 -08:00
rand_core = "0.6"
2020-09-08 16:53:42 -07:00
rusqlite = { version = "0.24", features = ["bundled", "time"] }
time = "0.2"
2021-03-25 22:54:42 -07:00
zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" }
2021-03-25 22:50:56 -07:00
zcash_primitives = { version = "0.5", path = "../zcash_primitives" }
[dev-dependencies]
tempfile = "3"
2021-03-25 22:53:42 -07:00
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
[features]
mainnet = []
test-dependencies = ["zcash_client_backend/test-dependencies"]