Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move common package data to workspace Cargo.toml #1943

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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