[package] name = "zcash_client_sqlite" description = "An SQLite-based Zcash light client" version = "0.0.0" authors = [ "Jack Grigg ", ] 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" ff = { version = "0.6", path = "../ff" } pairing = { version = "0.16", path = "../pairing" } protobuf = "2" rusqlite = { version = "0.20", features = ["bundled"] } time = "0.1" zcash_client_backend = { version = "0.2", path = "../zcash_client_backend" } zcash_primitives = { version = "0.2", path = "../zcash_primitives" } [dev-dependencies] rand_core = "0.5.1" remove_dir_all = "=0.5.2" # tempfile dependency; 0.5.3 bumped the MSRV tempfile = "3" zcash_proofs = { version = "0.2", path = "../zcash_proofs" } [features] mainnet = []