Skip to content
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
2 changes: 1 addition & 1 deletion common/s2n-codec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-codec"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down
10 changes: 5 additions & 5 deletions dc/s2n-quic-dc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-dc"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down Expand Up @@ -44,10 +44,10 @@ once_cell = "1"
pin-project-lite = "0.2"
rand = { version = "0.9", features = ["small_rng"] }
rand_chacha = "0.9"
s2n-codec = { version = "=0.67.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic = { version = "=1.67.0", path = "../../quic/s2n-quic", features = ["unstable-provider-dc"] }
s2n-quic-core = { version = "=0.67.0", path = "../../quic/s2n-quic-core", default-features = false }
s2n-quic-platform = { version = "=0.67.0", path = "../../quic/s2n-quic-platform" }
s2n-codec = { version = "=0.68.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic = { version = "=1.68.0", path = "../../quic/s2n-quic", features = ["unstable-provider-dc"] }
s2n-quic-core = { version = "=0.68.0", path = "../../quic/s2n-quic-core", default-features = false }
s2n-quic-platform = { version = "=0.68.0", path = "../../quic/s2n-quic-platform" }
slotmap = "1"
hashbrown = "0.16"
thiserror = "2"
Expand Down
4 changes: 2 additions & 2 deletions quic/s2n-quic-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-core"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down Expand Up @@ -41,7 +41,7 @@ num-rational = { version = "0.4", default-features = false }
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
pin-project-lite = { version = "0.2" }
probe = { version = "0.5", optional = true }
s2n-codec = { version = "=0.67.0", path = "../../common/s2n-codec", default-features = false }
s2n-codec = { version = "=0.68.0", path = "../../common/s2n-codec", default-features = false }
subtle = { version = "2", default-features = false }
tracing = { version = "0.1", default-features = false, optional = true }
zerocopy = { version = "0.8", features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions quic/s2n-quic-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-crypto"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -20,8 +20,8 @@ testing = []
aws-lc-rs = { version = "1.12", features = ["prebuilt-nasm"] }
cfg-if = "1"
lazy_static = "1"
s2n-codec = { version = "=0.67.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.67.0", path = "../s2n-quic-core", default-features = false }
s2n-codec = { version = "=0.68.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.68.0", path = "../s2n-quic-core", default-features = false }
zeroize = { version = "1", default-features = false, features = ["derive"] }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions quic/s2n-quic-platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-platform"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -25,8 +25,8 @@ bolero-generator = { version = "0.13", default-features = false, optional = true
cfg-if = "1"
futures = { version = "0.3", default-features = false, features = ["async-await"], optional = true }
lazy_static = { version = "1", optional = true }
s2n-quic-core = { version = "=0.67.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-xdp = { version = "=0.67.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
s2n-quic-core = { version = "=0.68.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-xdp = { version = "=0.68.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
socket2 = { version = "0.6", features = ["all"], optional = true }
tokio = { version = "1", default-features = false, features = ["macros", "net", "rt", "time"], optional = true }
tracing = { version = "0.1", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions quic/s2n-quic-rustls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-rustls"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -19,9 +19,9 @@ bytes = { version = "1", default-features = false }
rustls = { version = "0.23", default-features = false, features=["std", "aws-lc-rs", "logging"] }
# rustls-pemfile was incorperated to rustls-pki-types in version 1.9.0
rustls-pki-types = ">=1.9"
s2n-codec = { version = "=0.67.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
s2n-quic-core = { version = "=0.67.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.67.0", path = "../s2n-quic-crypto", default-features = false }
s2n-codec = { version = "=0.68.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
s2n-quic-core = { version = "=0.68.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.68.0", path = "../s2n-quic-crypto", default-features = false }

[dev-dependencies]
insta = { version = "1", features = ["json"] }
Expand Down
8 changes: 4 additions & 4 deletions quic/s2n-quic-tls-default/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-tls-default"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -24,10 +24,10 @@ fips = ["s2n-quic-tls?/fips"]
# order to support the `?` syntax, we declare s2n-quic-tls as an optional dependency.
# `s2n-quic-tls` only gets enabled based on the target.
[dependencies]
s2n-quic-tls = { version = "=0.67.0", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls = { version = "=0.68.0", path = "../s2n-quic-tls", optional = true }

[target.'cfg(unix)'.dependencies]
s2n-quic-tls = { version = "=0.67.0", path = "../s2n-quic-tls" }
s2n-quic-tls = { version = "=0.68.0", path = "../s2n-quic-tls" }

[target.'cfg(not(unix))'.dependencies]
s2n-quic-rustls = { version = "=0.67.0", path = "../s2n-quic-rustls" }
s2n-quic-rustls = { version = "=0.68.0", path = "../s2n-quic-rustls" }
8 changes: 4 additions & 4 deletions quic/s2n-quic-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-tls"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -19,9 +19,9 @@ unstable_private_key = []
bytes = { version = "1", default-features = false }
errno = "0.3"
libc = "0.2"
s2n-codec = { version = "=0.67.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.67.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.67.0", path = "../s2n-quic-crypto", default-features = false }
s2n-codec = { version = "=0.68.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.68.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.68.0", path = "../s2n-quic-crypto", default-features = false }
# the `on_key_exchange_group` event relies on an API added in 0.3.15
s2n-tls = { version = "0.3.16", features = ["quic"] }

Expand Down
6 changes: 3 additions & 3 deletions quic/s2n-quic-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-transport"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -23,8 +23,8 @@ futures-core = { version = "0.3", default-features = false, features = ["alloc"]
hashbrown = "0.16"
intrusive-collections = "0.9"
once_cell = "1"
s2n-codec = { version = "=0.67.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.67.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
s2n-codec = { version = "=0.68.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.68.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
siphasher = "1.0"
smallvec = { version = "1", default-features = false }

Expand Down
18 changes: 9 additions & 9 deletions quic/s2n-quic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic"
version = "1.67.0"
version = "1.68.0"
description = "A Rust implementation of the IETF QUIC protocol"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down Expand Up @@ -73,14 +73,14 @@ hash_hasher = { version = "2", optional = true }
humansize = { version = "2", optional = true }
rand = "0.9"
rand_chacha = "0.9"
s2n-codec = { version = "=0.67.0", path = "../../common/s2n-codec" }
s2n-quic-core = { version = "=0.67.0", path = "../s2n-quic-core" }
s2n-quic-crypto = { version = "=0.67.0", path = "../s2n-quic-crypto", optional = true }
s2n-quic-platform = { version = "=0.67.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.67.0", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.67.0", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.67.0", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.67.0", path = "../s2n-quic-transport" }
s2n-codec = { version = "=0.68.0", path = "../../common/s2n-codec" }
s2n-quic-core = { version = "=0.68.0", path = "../s2n-quic-core" }
s2n-quic-crypto = { version = "=0.68.0", path = "../s2n-quic-crypto", optional = true }
s2n-quic-platform = { version = "=0.68.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.68.0", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.68.0", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.68.0", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.68.0", path = "../s2n-quic-transport" }
tokio = { version = "1", default-features = false, features = ["sync"] }
zerocopy = { version = "0.8", optional = true, features = ["derive"] }
zeroize = { version = "1", optional = true, default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions tools/xdp/s2n-quic-xdp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-xdp"
version = "0.67.0"
version = "0.68.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -18,8 +18,8 @@ aya = { version = "0.13", default-features = false }
bitflags = "2"
errno = "0.3"
libc = "0.2"
s2n-codec = { version = "=0.67.0", path = "../../../common/s2n-codec" }
s2n-quic-core = { version = "=0.67.0", path = "../../../quic/s2n-quic-core" }
s2n-codec = { version = "=0.68.0", path = "../../../common/s2n-codec" }
s2n-quic-core = { version = "=0.68.0", path = "../../../quic/s2n-quic-core" }
tokio = { version = "1", features = ["net"], optional = true }

[dev-dependencies]
Expand Down
Loading