Skip to content

Commit

Permalink
chore: move common package data to workspace Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden authored and Ralith committed Jul 26, 2024
1 parent ce97879 commit 9dbaff0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ resolver = "2"

[workspace.package]
rust-version = "1.70.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quinn-rs/quinn"
keywords = ["quic"]
categories = ["network-programming", "asynchronous"]

[workspace.dependencies]
anyhow = "1.0.22"
Expand Down
10 changes: 5 additions & 5 deletions quinn-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "quinn-proto"
version = "0.11.4"
edition = "2021"
edition.workspace = true
rust-version.workspace = true
license = "MIT OR Apache-2.0"
repository = "https://github.com/quinn-rs/quinn"
license.workspace = true
repository.workspace = true
description = "State machine for the QUIC transport protocol"
keywords = ["quic"]
categories = [ "network-programming", "asynchronous" ]
keywords.workspace = true
categories.workspace = true
workspace = ".."

[package.metadata.docs.rs]
Expand Down
10 changes: 5 additions & 5 deletions quinn-udp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "quinn-udp"
version = "0.5.4"
edition = "2021"
edition.workspace = true
rust-version.workspace = true
license = "MIT OR Apache-2.0"
repository = "https://github.com/quinn-rs/quinn"
license.workspace = true
repository.workspace = true
description = "UDP sockets with ECN information for the QUIC transport protocol"
keywords = ["quic"]
categories = ["network-programming", "asynchronous"]
keywords.workspace = true
categories.workspace = true
workspace = ".."

[package.metadata.docs.rs]
Expand Down
10 changes: 5 additions & 5 deletions quinn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "quinn"
version = "0.11.2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quinn-rs/quinn"
license.workspace = true
repository.workspace = true
description = "Versatile QUIC transport protocol implementation"
readme = "../README.md"
keywords = ["quic"]
categories = [ "network-programming", "asynchronous" ]
keywords.workspace = true
categories.workspace = true
workspace = ".."
edition = "2021"
edition.workspace = true
rust-version.workspace = true

[package.metadata.docs.rs]
Expand Down

0 comments on commit 9dbaff0

Please sign in to comment.