Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the minor group across 1 directory with 17 updates #210

Closed
wants to merge 1 commit into from
Closed
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
643 changes: 401 additions & 242 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
[dependencies]
selium = { path = "../client", features = ["std"] }
selium-server = { path = "../server" }
clap = { version = "4.4", features = ["derive"] }
tokio = { version = "1.34", features = ["macros"] }
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.38", features = ["macros"] }
futures = "0.3"
anyhow = "1.0"
num-format = "0.4"
8 changes: 4 additions & 4 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ categories.workspace = true

[dependencies]
async-trait = "0.1"
bytes = "1.5"
bytes = "1.6"
chrono = { version = "0.4", optional = true, default-features = false, features = [
"clock",
] }
futures = "0.3"
quinn = "0.10"
rustls = "0.21"
quinn = "0.11"
rustls = "0.23"
rustls-pemfile = "1.0"
selium-protocol = { version = "0.4", path = "../protocol" }
selium-std = { version = "0.2", path = "../standard" }
tokio = { version = "1.34", features = ["full"] }
tokio = { version = "1.38", features = ["full"] }
tracing = "0.1"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions log/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
bytes = "1.5"
bytes = "1.6"
chrono = "0.4"
crc32c = "0.6"
futures = "0.3"
memmap2 = "0.9"
tokio = { version = "1.36", features = [
tokio = { version = "1.38", features = [
"fs",
"io-util",
"time",
Expand All @@ -32,7 +32,7 @@ thiserror = "1.0"

[dev-dependencies]
tempfile = "3.10"
criterion = { version = "0.3", features = ["async_tokio"] }
criterion = { version = "0.5", features = ["async_tokio"] }
fake = "2.9"
anyhow = "1.0"

Expand Down
4 changes: 2 additions & 2 deletions protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ __notopiccheck = []
[dependencies]
anyhow = "1.0"
bincode = "1.3"
bytes = { version = "1.5", features = ["serde"] }
bytes = { version = "1.6", features = ["serde"] }
futures = "0.3"
quinn = "0.10"
quinn = "0.11"
serde = { version = "1.0", features = ["derive"] }
selium-std = { version = "0.2", path = "../standard" }
tokio-util = { version = "0.7", features = ["codec"] }
Expand Down
14 changes: 7 additions & 7 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ __cloud = []

[dependencies]
anyhow = "1.0"
bytes = "1.5"
clap = { version = "4.4", features = ["derive"] }
bytes = "1.6"
clap = { version = "4.5", features = ["derive"] }
clap-verbosity-flag = "2.1"
env_logger = "0.10"
env_logger = "0.11"
futures = "0.3"
hmac-sha512 = "1.1"
log = "0.4"
pin-project-lite = "0.2"
quinn = "0.10"
rcgen = "0.11"
rustls = "0.21"
quinn = "0.11"
rcgen = "0.13"
rustls = "0.23"
rustls-pemfile = "1.0"
selium-protocol = { version = "0.4", path = "../protocol" }
selium-log = { version = "0.1", path = "../log" }
selium-std = { version = "0.2", path = "../standard", features = ["codec"] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.34", features = [
tokio = { version = "1.38", features = [
"macros",
"net",
"rt-multi-thread",
Expand Down
4 changes: 2 additions & 2 deletions standard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ readme.workspace = true
anyhow = "1.0"
bincode = "1.3"
brotli = { version = "3.4", optional = true }
bytes = "1.4"
bytes = "1.6"
flate2 = { version = "1.0", features = ["zlib"], optional = true }
futures = "0.3"
lz4_flex = { version = "0.11", optional = true }
quinn = "0.10"
quinn = "0.11"
selium-log = { version = "0.1", path = "../log" }
serde = { version = "1.0", optional = true }
thiserror = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ selium = { path = "../client", features = ["std"] }
selium-server = { path = "../server" }
serde = { version = "1.0", features = ["derive"] }
tempfile = "3.10.1"
tokio = { version = "1.34", features = ["macros"] }
uuid = { version = "1.6", features = ["v4"] }
tokio = { version = "1.38", features = ["macros"] }
uuid = { version = "1.10", features = ["v4"] }

[dependencies]
clap = "4.4"
clap = "4.5"
6 changes: 3 additions & 3 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ categories.workspace = true

[dependencies]
anyhow = "1.0"
clap = { version = "4.4", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
colored = "2.0"
rcgen = "0.11"
rustls = "0.21"
rcgen = "0.13"
rustls = "0.23"
time = "0.3"
Loading