Upgrade to rusqlite 0.23
Requires bumping the MSRV to 1.40.0 because libsqlite3-sys uses features introduced in that version. remove_dir_all can similarly be unpinned.
This commit is contained in:
parent
131e00e25d
commit
0a61db0317
|
@ -11,7 +11,7 @@ jobs:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.39.0
|
toolchain: 1.40.0
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
# cargo fmt does not build the code, and running it in a fresh clone of
|
# cargo fmt does not build the code, and running it in a fresh clone of
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.39.0
|
toolchain: 1.40.0
|
||||||
override: true
|
override: true
|
||||||
- name: cargo fetch
|
- name: cargo fetch
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
language: rust
|
language: rust
|
||||||
rust:
|
rust:
|
||||||
- 1.39.0
|
- 1.40.0
|
||||||
|
|
||||||
cache: cargo
|
cache: cargo
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1.39.0
|
1.40.0
|
||||||
|
|
|
@ -17,14 +17,13 @@ bs58 = { version = "0.3", features = ["check"] }
|
||||||
ff = { version = "0.6", path = "../ff" }
|
ff = { version = "0.6", path = "../ff" }
|
||||||
pairing = { version = "0.16", path = "../pairing" }
|
pairing = { version = "0.16", path = "../pairing" }
|
||||||
protobuf = "2"
|
protobuf = "2"
|
||||||
rusqlite = { version = "0.20", features = ["bundled"] }
|
rusqlite = { version = "0.23", features = ["bundled"] }
|
||||||
time = "0.1"
|
time = "0.1"
|
||||||
zcash_client_backend = { version = "0.2", path = "../zcash_client_backend" }
|
zcash_client_backend = { version = "0.2", path = "../zcash_client_backend" }
|
||||||
zcash_primitives = { version = "0.2", path = "../zcash_primitives" }
|
zcash_primitives = { version = "0.2", path = "../zcash_primitives" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand_core = "0.5.1"
|
rand_core = "0.5.1"
|
||||||
remove_dir_all = "=0.5.2" # tempfile dependency; 0.5.3 bumped the MSRV
|
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
zcash_proofs = { version = "0.2", path = "../zcash_proofs" }
|
zcash_proofs = { version = "0.2", path = "../zcash_proofs" }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue