diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index b30df8f936..b169ba2d12 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -27,7 +27,7 @@ proptest = { version = "0.10.1", optional = true } protobuf = "2.20" rand_core = "0.5.1" subtle = "2.2.3" -time = "0.2" +time = "0.3" zcash_note_encryption = { version = "0.0", path = "../components/zcash_note_encryption" } zcash_primitives = { version = "0.5", path = "../zcash_primitives" } diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 015029e1d5..3a0f85a7bc 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -20,8 +20,9 @@ group = "0.8" jubjub = "0.5.1" protobuf = "2.20" rand_core = "0.5.1" -rusqlite = { version = "0.25", features = ["bundled", "time"] } -time = "0.2" +rusqlite = { version = "0.28", features = ["time"] } +libsqlite3-sys= { version = "0.25.2", features = ["bundled"] } +time = "0.3" zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" } zcash_primitives = { version = "0.5", path = "../zcash_primitives" }