Skip to content

Commit

Permalink
Fix MSRV, vol.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron authored and bikeshedder committed Sep 9, 2021
1 parent 534c664 commit 767306c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ num_cpus = "1.11.1"
# `managed` feature
async-trait = { version = "0.1.17", optional = true }
# `serde` feature
serde = { version = "1.0", features = ["derive"], optional = true }
serde = { version = "1.0.103", features = ["derive"], optional = true }
# `rt_async-std_1` feature
async-std = { version = "1.0", features = ["unstable"], optional = true }
# The dependency of tokio::sync is non-optional. Deadpool depends on
Expand Down
2 changes: 1 addition & 1 deletion lapin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde = ["deadpool/serde", "serde_1"]
async-amqp = { version = "1.2", optional = true }
deadpool = { path = "../", version = "0.9.0-pre", default-features = false, features = ["managed"] }
lapin = { version = "1.0", default-features = false }
serde_1 = { package = "serde", version = "1.0", features = ["derive"], optional = true }
serde_1 = { package = "serde", version = "1.0.103", features = ["derive"], optional = true }
tokio-amqp = { version = "1.0", optional = true }

[dev-dependencies]
Expand Down

0 comments on commit 767306c

Please sign in to comment.