Skip to content

Commit e0a7e21

Browse files
chore: release 1.43.0 (#2281)
1 parent 61cfc7a commit e0a7e21

File tree

11 files changed

+41
-41
lines changed

11 files changed

+41
-41
lines changed

common/s2n-codec/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-codec"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]

dc/s2n-quic-dc/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-dc"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -32,9 +32,9 @@ once_cell = "1"
3232
pin-project-lite = "0.2"
3333
rand = { version = "0.8", features = ["small_rng"] }
3434
rand_chacha = "0.3"
35-
s2n-codec = { version = "=0.42.0", path = "../../common/s2n-codec", default-features = false }
36-
s2n-quic-core = { version = "=0.42.0", path = "../../quic/s2n-quic-core", default-features = false }
37-
s2n-quic-platform = { version = "=0.42.0", path = "../../quic/s2n-quic-platform" }
35+
s2n-codec = { version = "=0.43.0", path = "../../common/s2n-codec", default-features = false }
36+
s2n-quic-core = { version = "=0.43.0", path = "../../quic/s2n-quic-core", default-features = false }
37+
s2n-quic-platform = { version = "=0.43.0", path = "../../quic/s2n-quic-platform" }
3838
slotmap = "1"
3939
thiserror = "1"
4040
tokio = { version = "1", default-features = false, features = ["sync"] }

quic/s2n-quic-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-core"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -41,7 +41,7 @@ num-rational = { version = "0.4", default-features = false }
4141
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
4242
pin-project-lite = { version = "0.2" }
4343
probe = { version = "0.5", optional = true }
44-
s2n-codec = { version = "=0.42.0", path = "../../common/s2n-codec", default-features = false }
44+
s2n-codec = { version = "=0.43.0", path = "../../common/s2n-codec", default-features = false }
4545
subtle = { version = "2", default-features = false }
4646
tracing = { version = "0.1", default-features = false, optional = true }
4747
zerocopy = { version = "0.7", features = ["derive"] }

quic/s2n-quic-crypto/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-crypto"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -19,8 +19,8 @@ testing = []
1919
[dependencies]
2020
cfg-if = "1"
2121
lazy_static = "1"
22-
s2n-codec = { version = "=0.42.0", path = "../../common/s2n-codec", default-features = false }
23-
s2n-quic-core = { version = "=0.42.0", path = "../s2n-quic-core", default-features = false }
22+
s2n-codec = { version = "=0.43.0", path = "../../common/s2n-codec", default-features = false }
23+
s2n-quic-core = { version = "=0.43.0", path = "../s2n-quic-core", default-features = false }
2424
zeroize = { version = "1", default-features = false, features = ["derive"] }
2525

2626
[target.'cfg(not(target_os = "windows"))'.dependencies]

quic/s2n-quic-platform/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-platform"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -25,8 +25,8 @@ bolero-generator = { version = "0.11", optional = true }
2525
cfg-if = "1"
2626
futures = { version = "0.3", default-features = false, features = ["async-await"], optional = true }
2727
lazy_static = { version = "1", optional = true }
28-
s2n-quic-core = { version = "=0.42.0", path = "../s2n-quic-core", default-features = false }
29-
s2n-quic-xdp = { version = "=0.42.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
28+
s2n-quic-core = { version = "=0.43.0", path = "../s2n-quic-core", default-features = false }
29+
s2n-quic-xdp = { version = "=0.43.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
3030
socket2 = { version = "0.5", features = ["all"], optional = true }
3131
tokio = { version = "1", default-features = false, features = ["macros", "net", "rt", "time"], optional = true }
3232
tracing = { version = "0.1", optional = true }

quic/s2n-quic-rustls/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-rustls"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -18,9 +18,9 @@ bytes = { version = "1", default-features = false }
1818
# By [default](https://docs.rs/crate/rustls/latest/features) rustls includes the `tls12` feature.
1919
rustls = { version = "0.23", default-features = false, features=["std", "aws-lc-rs", "logging"] }
2020
rustls-pemfile = "2"
21-
s2n-codec = { version = "=0.42.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
22-
s2n-quic-core = { version = "=0.42.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
23-
s2n-quic-crypto = { version = "=0.42.0", path = "../s2n-quic-crypto", default-features = false }
21+
s2n-codec = { version = "=0.43.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
22+
s2n-quic-core = { version = "=0.43.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
23+
s2n-quic-crypto = { version = "=0.43.0", path = "../s2n-quic-crypto", default-features = false }
2424

2525
[dev-dependencies]
2626
insta = { version = "1", features = ["json"] }

quic/s2n-quic-tls-default/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-tls-default"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -24,10 +24,10 @@ fips = ["s2n-quic-tls?/fips"]
2424
# order to support the `?` syntax, we declare s2n-quic-tls as an optional dependency.
2525
# `s2n-quic-tls` only gets enabled based on the target.
2626
[dependencies]
27-
s2n-quic-tls = { version = "=0.42.0", path = "../s2n-quic-tls", optional = true }
27+
s2n-quic-tls = { version = "=0.43.0", path = "../s2n-quic-tls", optional = true }
2828

2929
[target.'cfg(unix)'.dependencies]
30-
s2n-quic-tls = { version = "=0.42.0", path = "../s2n-quic-tls" }
30+
s2n-quic-tls = { version = "=0.43.0", path = "../s2n-quic-tls" }
3131

3232
[target.'cfg(not(unix))'.dependencies]
33-
s2n-quic-rustls = { version = "=0.42.0", path = "../s2n-quic-rustls" }
33+
s2n-quic-rustls = { version = "=0.43.0", path = "../s2n-quic-rustls" }

quic/s2n-quic-tls/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-tls"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -19,9 +19,9 @@ unstable_private_key = []
1919
bytes = { version = "1", default-features = false }
2020
errno = "0.3"
2121
libc = "0.2"
22-
s2n-codec = { version = "=0.42.0", path = "../../common/s2n-codec", default-features = false }
23-
s2n-quic-core = { version = "=0.42.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
24-
s2n-quic-crypto = { version = "=0.42.0", path = "../s2n-quic-crypto", default-features = false }
22+
s2n-codec = { version = "=0.43.0", path = "../../common/s2n-codec", default-features = false }
23+
s2n-quic-core = { version = "=0.43.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
24+
s2n-quic-crypto = { version = "=0.43.0", path = "../s2n-quic-crypto", default-features = false }
2525
s2n-tls = { version = "0.2", features = ["quic"] }
2626

2727
[dev-dependencies]

quic/s2n-quic-transport/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-transport"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -23,8 +23,8 @@ futures-core = { version = "0.3", default-features = false, features = ["alloc"]
2323
hashbrown = "0.14"
2424
intrusive-collections = "0.9"
2525
once_cell = "1"
26-
s2n-codec = { version = "=0.42.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
27-
s2n-quic-core = { version = "=0.42.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
26+
s2n-codec = { version = "=0.43.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
27+
s2n-quic-core = { version = "=0.43.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
2828
siphasher = "1.0"
2929
smallvec = { version = "1", default-features = false }
3030

quic/s2n-quic/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic"
3-
version = "1.42.0"
3+
version = "1.43.0"
44
description = "A Rust implementation of the IETF QUIC protocol"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -69,14 +69,14 @@ hash_hasher = { version = "2", optional = true }
6969
humansize = { version = "2", optional = true }
7070
rand = "0.8"
7171
rand_chacha = "0.3"
72-
s2n-codec = { version = "=0.42.0", path = "../../common/s2n-codec" }
73-
s2n-quic-core = { version = "=0.42.0", path = "../s2n-quic-core" }
74-
s2n-quic-crypto = { version = "=0.42.0", path = "../s2n-quic-crypto", optional = true }
75-
s2n-quic-platform = { version = "=0.42.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
76-
s2n-quic-rustls = { version = "=0.42.0", path = "../s2n-quic-rustls", optional = true }
77-
s2n-quic-tls = { version = "=0.42.0", path = "../s2n-quic-tls", optional = true }
78-
s2n-quic-tls-default = { version = "=0.42.0", path = "../s2n-quic-tls-default", optional = true }
79-
s2n-quic-transport = { version = "=0.42.0", path = "../s2n-quic-transport" }
72+
s2n-codec = { version = "=0.43.0", path = "../../common/s2n-codec" }
73+
s2n-quic-core = { version = "=0.43.0", path = "../s2n-quic-core" }
74+
s2n-quic-crypto = { version = "=0.43.0", path = "../s2n-quic-crypto", optional = true }
75+
s2n-quic-platform = { version = "=0.43.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
76+
s2n-quic-rustls = { version = "=0.43.0", path = "../s2n-quic-rustls", optional = true }
77+
s2n-quic-tls = { version = "=0.43.0", path = "../s2n-quic-tls", optional = true }
78+
s2n-quic-tls-default = { version = "=0.43.0", path = "../s2n-quic-tls-default", optional = true }
79+
s2n-quic-transport = { version = "=0.43.0", path = "../s2n-quic-transport" }
8080
tokio = { version = "1", default-features = false }
8181
zerocopy = { version = "0.7", optional = true, features = ["derive"] }
8282
zeroize = { version = "1", optional = true, default-features = false }
@@ -85,7 +85,7 @@ zeroize = { version = "1", optional = true, default-features = false }
8585
bolero = { version = "0.11" }
8686
s2n-quic-core = { path = "../s2n-quic-core", features = ["branch-tracing", "event-tracing", "probe-tracing", "testing"] }
8787
s2n-quic-platform = { path = "../s2n-quic-platform", features = ["testing"] }
88-
s2n-quic-transport = { version = "=0.42.0", path = "../s2n-quic-transport", features = ["unstable_resumption", "unstable-provider-dc"] }
88+
s2n-quic-transport = { version = "=0.43.0", path = "../s2n-quic-transport", features = ["unstable_resumption", "unstable-provider-dc"] }
8989
tokio = { version = "1", features = ["full"] }
9090
tracing = { version = "0.1" }
9191
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

tools/xdp/s2n-quic-xdp/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-xdp"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -18,8 +18,8 @@ aya = { version = "0.12", default-features = false }
1818
bitflags = "2"
1919
errno = "0.3"
2020
libc = "0.2"
21-
s2n-codec = { version = "=0.42.0", path = "../../../common/s2n-codec" }
22-
s2n-quic-core = { version = "=0.42.0", path = "../../../quic/s2n-quic-core" }
21+
s2n-codec = { version = "=0.43.0", path = "../../../common/s2n-codec" }
22+
s2n-quic-core = { version = "=0.43.0", path = "../../../quic/s2n-quic-core" }
2323
tokio = { version = "1", features = ["net"], optional = true }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)