diff --git a/common/s2n-codec/Cargo.toml b/common/s2n-codec/Cargo.toml index c565e26c7..88ac04fc7 100644 --- a/common/s2n-codec/Cargo.toml +++ b/common/s2n-codec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-codec" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] diff --git a/dc/s2n-quic-dc/Cargo.toml b/dc/s2n-quic-dc/Cargo.toml index 9a95d1b04..15fadab10 100644 --- a/dc/s2n-quic-dc/Cargo.toml +++ b/dc/s2n-quic-dc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-dc" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -21,9 +21,9 @@ crossbeam-channel = "0.5" libc = "0.2" num-rational = { version = "0.4", default-features = false } once_cell = "1" -s2n-codec = { version = "=0.36.0", path = "../../common/s2n-codec", default-features = false } -s2n-quic-core = { version = "=0.36.0", path = "../../quic/s2n-quic-core", default-features = false } -s2n-quic-platform = { version = "=0.36.0", path = "../../quic/s2n-quic-platform" } +s2n-codec = { version = "=0.37.0", path = "../../common/s2n-codec", default-features = false } +s2n-quic-core = { version = "=0.37.0", path = "../../quic/s2n-quic-core", default-features = false } +s2n-quic-platform = { version = "=0.37.0", path = "../../quic/s2n-quic-platform" } thiserror = "1" tokio = { version = "1", features = ["io-util"], optional = true } tracing = "0.1" diff --git a/quic/s2n-quic-core/Cargo.toml b/quic/s2n-quic-core/Cargo.toml index d346e8505..c3637e13c 100644 --- a/quic/s2n-quic-core/Cargo.toml +++ b/quic/s2n-quic-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-core" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -38,7 +38,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.36.0", path = "../../common/s2n-codec", default-features = false } +s2n-codec = { version = "=0.37.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.7", features = ["derive"] } diff --git a/quic/s2n-quic-crypto/Cargo.toml b/quic/s2n-quic-crypto/Cargo.toml index 40c7accf6..51f4675a7 100644 --- a/quic/s2n-quic-crypto/Cargo.toml +++ b/quic/s2n-quic-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-crypto" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -18,8 +18,8 @@ testing = [] [dependencies] cfg-if = "1" lazy_static = "1" -s2n-codec = { version = "=0.36.0", path = "../../common/s2n-codec", default-features = false } -s2n-quic-core = { version = "=0.36.0", path = "../s2n-quic-core", default-features = false } +s2n-codec = { version = "=0.37.0", path = "../../common/s2n-codec", default-features = false } +s2n-quic-core = { version = "=0.37.0", path = "../s2n-quic-core", default-features = false } zeroize = { version = "1", default-features = false, features = ["derive"] } [target.'cfg(not(target_os = "windows"))'.dependencies] diff --git a/quic/s2n-quic-platform/Cargo.toml b/quic/s2n-quic-platform/Cargo.toml index df77d9b88..6bb172ba7 100644 --- a/quic/s2n-quic-platform/Cargo.toml +++ b/quic/s2n-quic-platform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-platform" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -25,8 +25,8 @@ bolero-generator = { version = "0.10", 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.36.0", path = "../s2n-quic-core", default-features = false } -s2n-quic-xdp = { version = "=0.36.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true } +s2n-quic-core = { version = "=0.37.0", path = "../s2n-quic-core", default-features = false } +s2n-quic-xdp = { version = "=0.37.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true } socket2 = { version = "0.5", features = ["all"], optional = true } tokio = { version = "1", default-features = false, features = ["macros", "net", "rt", "time"], optional = true } tracing = { version = "0.1", optional = true } diff --git a/quic/s2n-quic-rustls/Cargo.toml b/quic/s2n-quic-rustls/Cargo.toml index 8dc26b084..faef13db4 100644 --- a/quic/s2n-quic-rustls/Cargo.toml +++ b/quic/s2n-quic-rustls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-rustls" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -14,9 +14,9 @@ exclude = ["corpus.tar.gz"] bytes = { version = "1", default-features = false } rustls = { version = "0.21", features = ["quic"] } rustls-pemfile = "1" -s2n-codec = { version = "=0.36.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] } -s2n-quic-core = { version = "=0.36.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } -s2n-quic-crypto = { version = "=0.36.0", path = "../s2n-quic-crypto", default-features = false } +s2n-codec = { version = "=0.37.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] } +s2n-quic-core = { version = "=0.37.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } +s2n-quic-crypto = { version = "=0.37.0", path = "../s2n-quic-crypto", default-features = false } [dev-dependencies] insta = { version = "1", features = ["json"] } diff --git a/quic/s2n-quic-tls-default/Cargo.toml b/quic/s2n-quic-tls-default/Cargo.toml index 3ccc999ba..e18e9879f 100644 --- a/quic/s2n-quic-tls-default/Cargo.toml +++ b/quic/s2n-quic-tls-default/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-tls-default" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -11,7 +11,7 @@ license = "Apache-2.0" exclude = ["corpus.tar.gz"] [target.'cfg(unix)'.dependencies] -s2n-quic-tls = { version = "=0.36.0", path = "../s2n-quic-tls" } +s2n-quic-tls = { version = "=0.37.0", path = "../s2n-quic-tls" } [target.'cfg(not(unix))'.dependencies] -s2n-quic-rustls = { version = "=0.36.0", path = "../s2n-quic-rustls" } +s2n-quic-rustls = { version = "=0.37.0", path = "../s2n-quic-rustls" } diff --git a/quic/s2n-quic-tls/Cargo.toml b/quic/s2n-quic-tls/Cargo.toml index 95d66cb87..a223318f4 100644 --- a/quic/s2n-quic-tls/Cargo.toml +++ b/quic/s2n-quic-tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-tls" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -18,9 +18,9 @@ unstable_private_key = [] bytes = { version = "1", default-features = false } errno = "0.3" libc = "0.2" -s2n-codec = { version = "=0.36.0", path = "../../common/s2n-codec", default-features = false } -s2n-quic-core = { version = "=0.36.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } -s2n-quic-crypto = { version = "=0.36.0", path = "../s2n-quic-crypto", default-features = false } +s2n-codec = { version = "=0.37.0", path = "../../common/s2n-codec", default-features = false } +s2n-quic-core = { version = "=0.37.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } +s2n-quic-crypto = { version = "=0.37.0", path = "../s2n-quic-crypto", default-features = false } s2n-tls = { version = "0.2", features = ["quic"] } [dev-dependencies] diff --git a/quic/s2n-quic-transport/Cargo.toml b/quic/s2n-quic-transport/Cargo.toml index 48cab5fb8..5d4f39039 100644 --- a/quic/s2n-quic-transport/Cargo.toml +++ b/quic/s2n-quic-transport/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-transport" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -22,8 +22,8 @@ futures-core = { version = "0.3", default-features = false, features = ["alloc"] hashbrown = "0.14" intrusive-collections = "0.9" once_cell = "1" -s2n-codec = { version = "=0.36.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false } -s2n-quic-core = { version = "=0.36.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false } +s2n-codec = { version = "=0.37.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false } +s2n-quic-core = { version = "=0.37.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false } siphasher = "1.0" smallvec = { version = "1", default-features = false } diff --git a/quic/s2n-quic/Cargo.toml b/quic/s2n-quic/Cargo.toml index 0fafc1b2d..4194c280a 100644 --- a/quic/s2n-quic/Cargo.toml +++ b/quic/s2n-quic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic" -version = "1.36.0" +version = "1.37.0" description = "A Rust implementation of the IETF QUIC protocol" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -61,14 +61,14 @@ hash_hasher = { version = "2", optional = true } humansize = { version = "2", optional = true } rand = "0.8" rand_chacha = "0.3" -s2n-codec = { version = "=0.36.0", path = "../../common/s2n-codec" } -s2n-quic-core = { version = "=0.36.0", path = "../s2n-quic-core" } -s2n-quic-crypto = { version = "=0.36.0", path = "../s2n-quic-crypto", optional = true } -s2n-quic-platform = { version = "=0.36.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] } -s2n-quic-rustls = { version = "=0.36.0", path = "../s2n-quic-rustls", optional = true } -s2n-quic-tls = { version = "=0.36.0", path = "../s2n-quic-tls", optional = true } -s2n-quic-tls-default = { version = "=0.36.0", path = "../s2n-quic-tls-default", optional = true } -s2n-quic-transport = { version = "=0.36.0", path = "../s2n-quic-transport" } +s2n-codec = { version = "=0.37.0", path = "../../common/s2n-codec" } +s2n-quic-core = { version = "=0.37.0", path = "../s2n-quic-core" } +s2n-quic-crypto = { version = "=0.37.0", path = "../s2n-quic-crypto", optional = true } +s2n-quic-platform = { version = "=0.37.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] } +s2n-quic-rustls = { version = "=0.37.0", path = "../s2n-quic-rustls", optional = true } +s2n-quic-tls = { version = "=0.37.0", path = "../s2n-quic-tls", optional = true } +s2n-quic-tls-default = { version = "=0.37.0", path = "../s2n-quic-tls-default", optional = true } +s2n-quic-transport = { version = "=0.37.0", path = "../s2n-quic-transport" } tokio = { version = "1", default-features = false } zerocopy = { version = "0.7", optional = true, features = ["derive"] } zeroize = { version = "1", optional = true, default-features = false } @@ -77,7 +77,7 @@ zeroize = { version = "1", optional = true, default-features = false } bolero = { version = "0.10" } s2n-quic-core = { path = "../s2n-quic-core", features = ["branch-tracing", "event-tracing", "probe-tracing", "testing"] } s2n-quic-platform = { path = "../s2n-quic-platform", features = ["testing"] } -s2n-quic-transport = { version = "=0.36.0", path = "../s2n-quic-transport", features = ["unstable_resumption"] } +s2n-quic-transport = { version = "=0.37.0", path = "../s2n-quic-transport", features = ["unstable_resumption"] } tokio = { version = "1", features = ["full"] } tracing = { version = "0.1" } tracing-subscriber = { version = "0.3", features = ["env-filter"] } diff --git a/tools/xdp/s2n-quic-xdp/Cargo.toml b/tools/xdp/s2n-quic-xdp/Cargo.toml index 645c8fdcb..cbcb6e2e4 100644 --- a/tools/xdp/s2n-quic-xdp/Cargo.toml +++ b/tools/xdp/s2n-quic-xdp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic-xdp" -version = "0.36.0" +version = "0.37.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -18,8 +18,8 @@ aya = { version = "0.12", default-features = false } bitflags = "2" errno = "0.3" libc = "0.2" -s2n-codec = { version = "=0.36.0", path = "../../../common/s2n-codec" } -s2n-quic-core = { version = "=0.36.0", path = "../../../quic/s2n-quic-core" } +s2n-codec = { version = "=0.37.0", path = "../../../common/s2n-codec" } +s2n-quic-core = { version = "=0.37.0", path = "../../../quic/s2n-quic-core" } tokio = { version = "1", features = ["net"], optional = true } [dev-dependencies]