SQLite database structure and initialisation

This commit is contained in:
Jack Grigg
2019-03-09 02:16:00 +00:00
parent 99aef05318
commit bee4d6a92b
7 changed files with 530 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
[package]
name = "zcash_client_sqlite"
version = "0.0.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
edition = "2018"
[dependencies]
rusqlite = { version = "0.20", features = ["bundled"] }
zcash_client_backend = { path = "../zcash_client_backend" }
zcash_primitives = { path = "../zcash_primitives" }
[dev-dependencies]
tempfile = "3"