Skip to content

Commit

Permalink
refactor: move rust-version to workspace Cargo.toml
Browse files Browse the repository at this point in the history
Follow-up to suggestion in
quinn-rs#1939 (comment).
  • Loading branch information
mxinden authored and flub committed Aug 6, 2024
1 parent 5c8f943 commit 401efdc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ members = ["quinn", "quinn-proto", "quinn-udp", "bench", "perf", "fuzz"]
default-members = ["quinn", "quinn-proto", "quinn-udp", "bench", "perf"]
resolver = "2"

[workspace.package]
rust-version = "1.70.0"

[workspace.dependencies]
anyhow = "1.0.22"
arbitrary = { version = "1.0.1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion quinn-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "iroh-quinn-proto"
version = "0.11.4"
edition = "2021"
rust-version = "1.70"
rust-version.workspace = true
license = "MIT OR Apache-2.0"
repository = "https://github.com/quinn-rs/quinn"
description = "State machine for the QUIC transport protocol"
Expand Down
2 changes: 1 addition & 1 deletion quinn-udp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "iroh-quinn-udp"
version = "0.5.4"
edition = "2021"
rust-version = "1.70"
rust-version.workspace = true
license = "MIT OR Apache-2.0"
repository = "https://github.com/quinn-rs/quinn"
description = "UDP sockets with ECN information for the QUIC transport protocol"
Expand Down
2 changes: 1 addition & 1 deletion quinn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["quic"]
categories = [ "network-programming", "asynchronous" ]
workspace = ".."
edition = "2021"
rust-version = "1.70"
rust-version.workspace = true

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 401efdc

Please sign in to comment.