mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-19 01:36:08 +00:00
chore: move common package data to workspace Cargo.toml
This commit is contained in:
committed by
Benjamin Saunders
parent
ce97879e8d
commit
9dbaff0ea1
@@ -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"
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user