chore: move common package data to workspace Cargo.toml

This commit is contained in:
Max Inden
2024-07-26 09:39:27 +02:00
committed by Benjamin Saunders
parent ce97879e8d
commit 9dbaff0ea1
4 changed files with 20 additions and 15 deletions
+5
View File
@@ -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"
+5 -5
View File
@@ -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]
+5 -5
View File
@@ -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]
+5 -5
View File
@@ -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]