Skip to content

Commit 52611e0

Browse files
committed
Address -Zminimal-versions
1 parent 593ad0d commit 52611e0

File tree

3 files changed

+151
-10
lines changed

3 files changed

+151
-10
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ jobs:
5454
command: update
5555
toolchain: nightly
5656
args: -Zminimal-versions
57+
# to mitigate the ="0" declaration in rust_mysql_common:
58+
# https://github.com/blackbeam/rust_mysql_common/blob/1a493156bad0a4f40e0f3c4db9bbc40e498db726/Cargo.toml#L79
59+
- name: cargo update -p bindgen
60+
uses: actions-rs/cargo@v1
61+
with:
62+
command: update
63+
5764
- name: cargo test
5865
uses: actions-rs/cargo@v1
5966
with:

Cargo.lock

Lines changed: 139 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ nom = "7"
2727
mysql_common = { version = "0.31.0", features = ["chrono"] }
2828
byteorder = "1"
2929
chrono = "0.4.23"
30-
rustls = { version = "0.22.0", optional = true }
30+
rustls = { version = "0.22.1", optional = true }
3131

3232
[dev-dependencies]
3333
postgres = "0.19.1"
@@ -52,4 +52,8 @@ byteorder = "1.2.4" # mysql_common needs this
5252
rand = "0.3.14" # otherwise libc + winapi won't build
5353
async-trait = "0.1.9" # via tokio-postgtes via postgres
5454
twox-hash = "1.2.0" # via mysql
55+
mysql_common = "0.30.6" # via mysql
5556
bufstream = "0.1.3" # via mysql
57+
bindgen = "0.58.1" # via mysql
58+
cmake = "0.1.45" # via mysql
59+
serde_derive = "1.0.100" # via mysql

0 commit comments

Comments
 (0)