Use minimal dependency versions for MSRV tests on CI (#1109)

This commit is contained in:
David Pedersen
2022-06-27 20:44:20 +02:00
committed by GitHub
parent cb207472f4
commit f6b1d35c51
6 changed files with 49 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
[package]
name = "internal-minimal-versions"
version = "0.1.0"
edition = "2021"
publish = false
# these dependencies don't build if installed with `cargo +nightly update -Z
# minimal-versions` so we add them here to make sure we get a version that
# does build
#
# this only matters for axum's CI
[dependencies]
crc32fast = "1.3.2"
gcc = "0.3.55"
time = "0.3.9"
tungstenite = "0.17.2"
+1
View File
@@ -0,0 +1 @@
// intentionally left empty