librustzcash/zcash_client_sqlite/Cargo.toml

73 lines
2.2 KiB
TOML
Raw Normal View History

[package]
name = "zcash_client_sqlite"
description = "An SQLite-based Zcash light client"
version = "0.7.1"
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.65"
[dependencies]
incrementalmerkletree = { version = "0.4", features = ["legacy-api"] }
shardtree = { version = "0.0", features = ["legacy-api"] }
2023-04-27 18:46:28 -07:00
zcash_client_backend = { version = "0.9", path = "../zcash_client_backend" }
2023-06-06 13:35:42 -07:00
zcash_primitives = { version = "0.12", path = "../zcash_primitives", default-features = false }
# Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.)
# - Errors
2023-06-06 14:42:51 -07:00
bs58 = { version = "0.5", features = ["check"] }
hdwallet = { version = "0.4", optional = true }
# - Logging and metrics
tracing = "0.1"
# - Protobuf interfaces
prost = "0.11"
# - Secret management
secrecy = "0.8"
# - SQLite databases
group = "0.13"
jubjub = "0.10"
rusqlite = { version = "0.29.0", features = ["bundled", "time", "array"] }
2022-08-19 08:55:55 -07:00
schemer = "0.2"
schemer-rusqlite = "0.2.2"
time = "0.3.22"
uuid = "1.1"
# Dependencies used internally:
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)
[dev-dependencies]
assert_matches = "1.5"
incrementalmerkletree = { version = "0.4", features = ["legacy-api", "test-dependencies"] }
proptest = "1.0.0"
rand_core = "0.6"
regex = "1.4"
tempfile = "3.5.0"
zcash_note_encryption = "0.4"
2023-06-06 13:37:38 -07:00
zcash_proofs = { version = "0.12", path = "../zcash_proofs" }
2023-06-06 13:35:42 -07:00
zcash_primitives = { version = "0.12", path = "../zcash_primitives", features = ["test-dependencies"] }
2023-06-06 14:42:51 -07:00
zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] }
[features]
mainnet = []
test-dependencies = [
"incrementalmerkletree/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