2019-03-08 18:16:00 -08:00
|
|
|
[package]
|
|
|
|
name = "zcash_client_sqlite"
|
|
|
|
description = "An SQLite-based Zcash light client"
|
2023-09-12 08:33:11 -07:00
|
|
|
version = "0.8.0-rc.3"
|
2019-03-08 18:16:00 -08:00
|
|
|
authors = [
|
|
|
|
"Jack Grigg <jack@z.cash>",
|
2021-04-08 09:12:47 -07:00
|
|
|
"Kris Nuttycombe <kris@electriccoin.co>"
|
2019-03-08 18:16:00 -08:00
|
|
|
]
|
|
|
|
homepage = "https://github.com/zcash/librustzcash"
|
|
|
|
repository = "https://github.com/zcash/librustzcash"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2022-09-02 10:39:21 -07:00
|
|
|
edition = "2021"
|
2023-05-16 08:37:07 -07:00
|
|
|
rust-version = "1.65"
|
2019-03-08 18:16:00 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-09-12 08:33:11 -07:00
|
|
|
zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend", features = ["unstable-serialization"]}
|
2023-05-24 20:57:54 -07:00
|
|
|
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
|
2023-09-08 12:45:54 -07:00
|
|
|
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false }
|
2022-11-01 00:23:58 -07:00
|
|
|
|
|
|
|
# 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"] }
|
2023-04-19 12:33:34 -07:00
|
|
|
hdwallet = { version = "0.4", optional = true }
|
2022-11-01 00:23:58 -07:00
|
|
|
|
2022-12-06 00:17:49 -08:00
|
|
|
# - Logging and metrics
|
|
|
|
tracing = "0.1"
|
|
|
|
|
2023-05-24 20:57:54 -07:00
|
|
|
# - Serialization
|
|
|
|
byteorder = "1"
|
2023-09-08 09:21:34 -07:00
|
|
|
prost = "0.12"
|
2023-04-03 12:53:43 -07:00
|
|
|
group = "0.13"
|
|
|
|
jubjub = "0.10"
|
2022-11-01 00:23:58 -07:00
|
|
|
|
|
|
|
# - Secret management
|
|
|
|
secrecy = "0.8"
|
|
|
|
|
2023-09-08 11:47:41 -07:00
|
|
|
# - Note commitment trees
|
|
|
|
incrementalmerkletree = "0.5"
|
|
|
|
shardtree = { version = "0.1", features = ["legacy-api"] }
|
|
|
|
|
2022-11-01 00:23:58 -07:00
|
|
|
# - SQLite databases
|
2023-06-17 12:44:35 -07:00
|
|
|
rusqlite = { version = "0.29.0", features = ["bundled", "time", "array"] }
|
2022-08-19 08:55:55 -07:00
|
|
|
schemer = "0.2"
|
2023-06-17 12:44:35 -07:00
|
|
|
schemer-rusqlite = "0.2.2"
|
|
|
|
time = "0.3.22"
|
2022-08-02 09:06:15 -07:00
|
|
|
uuid = "1.1"
|
2022-11-01 00:23:58 -07:00
|
|
|
|
|
|
|
# Dependencies used internally:
|
|
|
|
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)
|
2023-07-25 06:57:10 -07:00
|
|
|
maybe-rayon = {version = "0.1.0", default-features = false}
|
2019-03-08 18:16:00 -08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-17 10:35:14 -07:00
|
|
|
assert_matches = "1.5"
|
2023-09-08 11:47:41 -07:00
|
|
|
incrementalmerkletree = { version = "0.5", features = ["test-dependencies"] }
|
|
|
|
shardtree = { version = "0.1", features = ["legacy-api", "test-dependencies"] }
|
2022-09-01 20:03:39 -07:00
|
|
|
proptest = "1.0.0"
|
2022-10-31 23:52:10 -07:00
|
|
|
rand_core = "0.6"
|
2022-09-01 20:03:39 -07:00
|
|
|
regex = "1.4"
|
2023-04-14 16:40:13 -07:00
|
|
|
tempfile = "3.5.0"
|
2023-06-06 13:27:39 -07:00
|
|
|
zcash_note_encryption = "0.4"
|
2023-09-08 12:48:55 -07:00
|
|
|
zcash_proofs = { version = "=0.13.0-rc.1", path = "../zcash_proofs" }
|
2023-09-08 12:45:54 -07:00
|
|
|
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", features = ["test-dependencies"] }
|
2023-09-12 07:31:03 -07:00
|
|
|
zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend", features = ["test-dependencies", "unstable-serialization"] }
|
2023-06-06 14:42:51 -07:00
|
|
|
zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] }
|
2019-04-08 04:24:49 -07:00
|
|
|
|
|
|
|
[features]
|
2023-07-25 06:57:10 -07:00
|
|
|
default = ["multicore"]
|
|
|
|
multicore = ["maybe-rayon/threads", "zcash_primitives/multicore"]
|
2019-04-08 04:24:49 -07:00
|
|
|
mainnet = []
|
2022-09-01 20:03:39 -07:00
|
|
|
test-dependencies = [
|
2023-06-08 11:53:39 -07:00
|
|
|
"incrementalmerkletree/test-dependencies",
|
2022-09-01 20:03:39 -07:00
|
|
|
"zcash_primitives/test-dependencies",
|
|
|
|
"zcash_client_backend/test-dependencies",
|
2023-04-03 12:53:43 -07:00
|
|
|
"incrementalmerkletree/test-dependencies",
|
2022-09-01 20:03:39 -07:00
|
|
|
]
|
2022-09-08 11:48:06 -07:00
|
|
|
transparent-inputs = ["hdwallet", "zcash_client_backend/transparent-inputs"]
|
2022-08-29 14:32:18 -07:00
|
|
|
unstable = ["zcash_client_backend/unstable"]
|
2021-08-05 14:39:36 -07:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|