Skip to content

Commit

Permalink
chore: bump s2n-codec version for v1.25.0 (#1889)
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyRosenblum authored Jul 24, 2023
1 parent cb48208 commit efa07e0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
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.6.0"
version = "0.6.1"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ 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"] }
pin-project-lite = { version = "0.2" }
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", default-features = false }
s2n-codec = { version = "=0.6.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"
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ testing = []
[dependencies]
cfg-if = "1"
lazy_static = "1"
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", default-features = false }
s2n-codec = { version = "=0.6.1", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.25.0", path = "../s2n-quic-core", default-features = false }
zeroize = { version = "1", default-features = false, features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-rustls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exclude = ["corpus.tar.gz"]
bytes = { version = "1", default-features = false }
rustls = { version = "0.20", features = ["quic"] }
rustls-pemfile = "1"
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", default-features = false }
s2n-codec = { version = "=0.6.1", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.25.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.25.0", path = "../s2n-quic-crypto", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ unstable_private_key = []
bytes = { version = "1", default-features = false }
errno = "0.3"
libc = "0.2"
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", default-features = false }
s2n-codec = { version = "=0.6.1", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.25.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.25.0", path = "../s2n-quic-crypto", default-features = false }
s2n-tls = { version = "=0.0.34", features = ["quic"] }
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ futures-core = { version = "0.3", default-features = false, features = ["alloc"]
hashbrown = "0.13"
intrusive-collections = "0.9"
once_cell = "1"
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-codec = { version = "=0.6.1", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.25.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
siphasher = "0.3"
smallvec = { version = "1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ hash_hasher = { version = "2", optional = true }
humansize = { version = "2", optional = true }
rand = "0.8"
rand_chacha = "0.3"
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec" }
s2n-codec = { version = "=0.6.1", path = "../../common/s2n-codec" }
s2n-quic-core = { version = "=0.25.0", path = "../s2n-quic-core" }
s2n-quic-crypto = { version = "=0.25.0", path = "../s2n-quic-crypto", optional = true }
s2n-quic-platform = { version = "=0.26.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
Expand Down
2 changes: 1 addition & 1 deletion tools/xdp/s2n-quic-xdp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ aya = { version = "0.11", default-features = false }
bitflags = "2"
errno = "0.3"
libc = "0.2"
s2n-codec = { version = "=0.6.0", path = "../../../common/s2n-codec" }
s2n-codec = { version = "=0.6.1", path = "../../../common/s2n-codec" }
s2n-quic-core = { version = "=0.25.0", path = "../../../quic/s2n-quic-core" }
tokio = { version = "1", features = ["net"], optional = true }

Expand Down

0 comments on commit efa07e0

Please sign in to comment.