Skip to content

Commit d5f0577

Browse files
committed
Fixes for bad minimal-versions
1 parent 11769f5 commit d5f0577

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Cargo.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ tls = ["rustls"]
2525
nom = "7"
2626
mysql_common = { version = "0.29.1", features = ["chrono"] }
2727
byteorder = "1"
28-
chrono = "0.4"
28+
chrono = "0.4.23"
2929
rustls = {version = "0.20.0", optional=true}
3030

3131
[dev-dependencies]
@@ -41,3 +41,14 @@ native-tls = "0.2.8"
4141

4242
[target.'cfg(unix)'.dev-dependencies]
4343
openssl = "0.10.38"
44+
45+
# for minimal-versions
46+
[target.'cfg(any())'.dev-dependencies]
47+
flate2 = "1.0.13" # libz-sys 1.0.0 has problems
48+
tap = "1.0.1" # bitvec's wyz dependency needs this
49+
time = "0.3.1" # mysql_common needs this through chrono
50+
byteorder = "1.2.4" # mysql_common needs this
51+
rand = "0.3.14" # otherwise libc + winapi won't build
52+
async-trait = "0.1.9" # via tokio-postgtes via postgres
53+
twox-hash = "1.2.0" # via mysql
54+
bufstream = "0.1.3" # via mysql

0 commit comments

Comments
 (0)