diff --git a/common/s2n-codec/Cargo.toml b/common/s2n-codec/Cargo.toml index 88461f9f21..02af5543cd 100644 --- a/common/s2n-codec/Cargo.toml +++ b/common/s2n-codec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-codec" -version = "0.4.0" +version = "0.4.1" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] diff --git a/quic/s2n-quic-core/Cargo.toml b/quic/s2n-quic-core/Cargo.toml index 387318a321..f2221e697e 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.18.1" +version = "0.18.2" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -30,7 +30,7 @@ hex-literal = "0.3" insta = { version = ">=1.12", features = ["json"], optional = true } num-rational = { version = "0.4", default-features = false } num-traits = { version = "0.2", default-features = false, features = ["libm"] } -s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", default-features = false } +s2n-codec = { version = "=0.4.1", path = "../../common/s2n-codec", default-features = false } subtle = { version = "2", default-features = false } tracing = { version = "0.1", default-features = false, optional = true } zerocopy = "0.6" diff --git a/quic/s2n-quic-crypto/Cargo.toml b/quic/s2n-quic-crypto/Cargo.toml index 3c8241847a..a4c1693efe 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.18.1" +version = "0.18.2" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -18,8 +18,8 @@ testing = [] cfg-if = "1" lazy_static = "1" ring = { version = "0.16", default-features = false } -s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", default-features = false } -s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", default-features = false } +s2n-codec = { version = "=0.4.1", path = "../../common/s2n-codec", default-features = false } +s2n-quic-core = { version = "=0.18.2", path = "../s2n-quic-core", default-features = false } zeroize = { version = "1", default-features = false, features = ["derive"] } [dev-dependencies] diff --git a/quic/s2n-quic-platform/Cargo.toml b/quic/s2n-quic-platform/Cargo.toml index bc87a66b25..aac092c5c5 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.18.1" +version = "0.19.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -26,7 +26,7 @@ errno = "0.3" futures = { version = "0.3", default-features = false, features = ["async-await"], optional = true } lazy_static = { version = "1", optional = true } pin-project = { version = "1", optional = true } -s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", default-features = false } +s2n-quic-core = { version = "=0.18.2", path = "../s2n-quic-core", default-features = false } socket2 = { version = "0.5", features = ["all"], optional = true } tokio = { version = "1", default-features = false, features = ["macros", "net", "rt", "time"], optional = true } turmoil = { version = "0.5.2", optional = true } diff --git a/quic/s2n-quic-rustls/Cargo.toml b/quic/s2n-quic-rustls/Cargo.toml index c84e013836..cf36f73ecb 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.18.1" +version = "0.18.2" 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.20", features = ["quic"] } rustls-pemfile = "1" -s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", default-features = false } -s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } -s2n-quic-crypto = { version = "=0.18.1", path = "../s2n-quic-crypto", default-features = false } +s2n-codec = { version = "=0.4.1", path = "../../common/s2n-codec", default-features = false } +s2n-quic-core = { version = "=0.18.2", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } +s2n-quic-crypto = { version = "=0.18.2", 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 398975b816..cef73a3378 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.18.1" +version = "0.18.2" 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.18.1", path = "../s2n-quic-tls" } +s2n-quic-tls = { version = "=0.18.2", path = "../s2n-quic-tls" } [target.'cfg(not(unix))'.dependencies] -s2n-quic-rustls = { version = "=0.18.1", path = "../s2n-quic-rustls" } +s2n-quic-rustls = { version = "=0.18.2", path = "../s2n-quic-rustls" } diff --git a/quic/s2n-quic-tls/Cargo.toml b/quic/s2n-quic-tls/Cargo.toml index 0a7e4288dd..7a0fb07076 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.18.1" +version = "0.18.2" 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.4.0", path = "../../common/s2n-codec", default-features = false } -s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } -s2n-quic-crypto = { version = "=0.18.1", path = "../s2n-quic-crypto", default-features = false } +s2n-codec = { version = "=0.4.1", path = "../../common/s2n-codec", default-features = false } +s2n-quic-core = { version = "=0.18.2", path = "../s2n-quic-core", default-features = false, features = ["alloc"] } +s2n-quic-crypto = { version = "=0.18.2", path = "../s2n-quic-crypto", default-features = false } s2n-tls = { version = "=0.0.26", features = ["quic"] } [target.'cfg(all(s2n_quic_unstable, s2n_quic_enable_pq_tls))'.dependencies] diff --git a/quic/s2n-quic-transport/Cargo.toml b/quic/s2n-quic-transport/Cargo.toml index 2511535dda..3032bbc7f7 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.18.1" +version = "0.18.2" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -21,8 +21,8 @@ futures-core = { version = "0.3", default-features = false, features = ["alloc"] hashbrown = "0.13" intrusive-collections = "0.9" once_cell = "1" -s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false } -s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", features = ["alloc"], default-features = false } +s2n-codec = { version = "=0.4.1", path = "../../common/s2n-codec", features = ["bytes"], default-features = false } +s2n-quic-core = { version = "=0.18.2", path = "../s2n-quic-core", features = ["alloc"], default-features = false } siphasher = "0.3" smallvec = { version = "1", default-features = false } diff --git a/quic/s2n-quic/Cargo.toml b/quic/s2n-quic/Cargo.toml index b20e85dd96..755872e538 100644 --- a/quic/s2n-quic/Cargo.toml +++ b/quic/s2n-quic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2n-quic" -version = "1.17.1" +version = "1.18.0" description = "A Rust implementation of the IETF QUIC protocol" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] @@ -56,13 +56,13 @@ hash_hasher = { version = "2", optional = true } rand = "0.8" rand_chacha = "0.3" ring = { version = "0.16", optional = true, default-features = false } -s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec" } -s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core" } -s2n-quic-platform = { version = "=0.18.1", path = "../s2n-quic-platform", features = ["tokio-runtime"] } -s2n-quic-rustls = { version = "=0.18.1", path = "../s2n-quic-rustls", optional = true } -s2n-quic-tls = { version = "=0.18.1", path = "../s2n-quic-tls", optional = true } -s2n-quic-tls-default = { version = "=0.18.1", path = "../s2n-quic-tls-default", optional = true } -s2n-quic-transport = { version = "=0.18.1", path = "../s2n-quic-transport" } +s2n-codec = { version = "=0.4.1", path = "../../common/s2n-codec" } +s2n-quic-core = { version = "=0.18.2", path = "../s2n-quic-core" } +s2n-quic-platform = { version = "=0.19.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] } +s2n-quic-rustls = { version = "=0.18.2", path = "../s2n-quic-rustls", optional = true } +s2n-quic-tls = { version = "=0.18.2", path = "../s2n-quic-tls", optional = true } +s2n-quic-tls-default = { version = "=0.18.2", path = "../s2n-quic-tls-default", optional = true } +s2n-quic-transport = { version = "=0.18.2", path = "../s2n-quic-transport" } tokio = { version = "1", default-features = false } zerocopy = { version = "0.6", optional = true } zerocopy-derive = { version = "0.3", optional = true }