librustzcash/zcash_client_sqlite/Cargo.toml

52 lines
1.4 KiB
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 = "2021"
rust-version = "1.56.1"
[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"] }
2022-05-06 13:03:49 -07:00
group = "0.12"
hdwallet = { version = "0.3.1", optional = true }
2022-05-06 13:03:49 -07:00
jubjub = "0.9"
protobuf = "~2.27.1" # MSRV 1.52.1
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"] }
2022-03-21 10:24:31 -07:00
secp256k1 = { version = "0.21" }
2022-08-19 08:55:55 -07:00
schemer = "0.2"
schemer-rusqlite = "0.2"
secrecy = "0.8"
2020-09-08 16:53:42 -07:00
time = "0.2"
uuid = "1.1"
zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" }
2022-06-24 09:29:22 -07:00
zcash_primitives = { version = "0.7", path = "../zcash_primitives" }
[dev-dependencies]
proptest = "1.0.0"
regex = "1.4"
tempfile = "3"
2022-06-24 09:33:38 -07:00
zcash_proofs = { version = "0.7", path = "../zcash_proofs" }
zcash_primitives = { version = "0.7", path = "../zcash_primitives", features = ["test-dependencies"] }
[features]
mainnet = []
test-dependencies = [
"zcash_primitives/test-dependencies",
"zcash_client_backend/test-dependencies",
]
transparent-inputs = ["hdwallet", "zcash_client_backend/transparent-inputs"]
unstable = ["zcash_client_backend/unstable"]
[lib]
bench = false