Skip to content

Commit 13c744c

Browse files
committed
build[cargo]: update crate versions
1 parent 19de94a commit 13c744c

File tree

6 files changed

+28
-28
lines changed

6 files changed

+28
-28
lines changed

cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ inquire = "0.7.5"
1919
anyhow = "1.0.86"
2020

2121
# Command line arguments
22-
clap = { version = "4.5.11", features = ["derive"] }
22+
clap = { version = "4.5.16", features = ["derive"] }
2323

2424
# Async runtime
25-
tokio = { version = "1.39.2", features = ["rt", "rt-multi-thread", "macros"] }
25+
tokio = { version = "1.39.3", features = ["rt", "rt-multi-thread", "macros"] }
2626

2727
# API
2828
url = "2.5.2"
2929
prost = "0.13.1"
30-
tonic = "0.12.1"
30+
tonic = "0.12.2"
3131

3232
[build-dependencies]
33-
toml = "0.8.16"
34-
tonic-build = "0.12.1"
33+
toml = "0.8.19"
34+
tonic-build = "0.12.2"

clients/wrapper/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ colored = "2.1.0"
1616
anyhow = "1.0.86"
1717

1818
# Signal handling
19-
ctrlc = "3.4.4"
19+
ctrlc = "3.4.5"
2020

2121
# User system
2222
uuid = { version = "1.10.0", features = ["v4"] }
2323

2424
# Command line arguments
25-
clap = { version = "4.5.11", features = ["derive"] }
25+
clap = { version = "4.5.16", features = ["derive"] }
2626

2727
# Regex parsing
28-
regex = "1.10.5"
28+
regex = "1.10.6"
2929

3030
# Async runtime
31-
tokio = { version = "1.39.2", features = ["rt", "rt-multi-thread", "macros", "process"] }
31+
tokio = { version = "1.39.3", features = ["rt", "rt-multi-thread", "macros", "process"] }
3232

3333
# API
3434
url = "2.5.2"
3535
prost = "0.13.1"
36-
tonic = "0.12.1"
36+
tonic = "0.12.2"
3737

3838
[build-dependencies]
39-
toml = "0.8.16"
40-
tonic-build = "0.12.1"
39+
toml = "0.8.19"
40+
tonic-build = "0.12.2"

common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ simplelog = "0.12.2"
1010
colored = "2.1.0"
1111

1212
# Command line arguments
13-
clap = { version = "4.5.11", features = ["derive"] }
13+
clap = { version = "4.5.16", features = ["derive"] }

controller/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,35 +16,35 @@ colored = "2.1.0"
1616
anyhow = "1.0.86"
1717

1818
# Signal handling
19-
ctrlc = "3.4.4"
19+
ctrlc = "3.4.5"
2020

2121
# Server system
2222
uuid = { version = "1.10.0", features = ["v4"] }
2323

2424
# Command line arguments
25-
clap = { version = "4.5.11", features = ["derive"] }
25+
clap = { version = "4.5.16", features = ["derive"] }
2626

2727
# Configuration
28-
serde = { version = "1.0.204", features = ["derive"] }
29-
toml = "0.8.16"
28+
serde = { version = "1.0.209", features = ["derive"] }
29+
toml = "0.8.19"
3030

3131
# Async runtime
32-
tokio = { version = "1.39.2", features = ["rt", "rt-multi-thread", "macros"] }
32+
tokio = { version = "1.39.3", features = ["rt", "rt-multi-thread", "macros"] }
3333
tokio-stream = "0.1.15"
3434

3535
# API
3636
url = { version = "2.5.2", features = ["serde"] }
3737
prost = "0.13.1"
38-
tonic = "0.12.1"
38+
tonic = "0.12.2"
3939

4040
# Drivers
41-
wasmtime = { version = "23.0.1", default-features = false, features = ["runtime", "component-model", "cranelift", "parallel-compilation", "cache"], optional = true }
42-
wasmtime-wasi = { version = "23.0.1", optional = true }
41+
wasmtime = { version = "24.0.0", default-features = false, features = ["runtime", "component-model", "cranelift", "parallel-compilation", "cache"], optional = true }
42+
wasmtime-wasi = { version = "24.0.0", optional = true }
4343
minreq = { version = "2.12.0", features = ["https-rustls"], optional = true }
4444

4545
[build-dependencies]
46-
toml = "0.8.16"
47-
tonic-build = "0.12.1"
46+
toml = "0.8.19"
47+
tonic-build = "0.12.2"
4848

4949
[features]
5050
wasm-drivers = ["dep:wasmtime", "dep:wasmtime-wasi", "dep:minreq"]
-42.2 KB
Binary file not shown.

drivers/pterodactyl/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
common = { path = "../../common" }
99

1010
# Wasm plugin
11-
wit-bindgen = "0.28.0"
11+
wit-bindgen = "0.30.0"
1212

1313
# Error handling
1414
anyhow = "1.0.86"
@@ -17,12 +17,12 @@ anyhow = "1.0.86"
1717
colored = "2.1.0"
1818

1919
# Configuration
20-
serde = { version = "1.0.204", features = ["derive"] }
21-
toml = "0.8.16"
20+
serde = { version = "1.0.209", features = ["derive"] }
21+
toml = "0.8.19"
2222

2323
# Pelican API
2424
url = { version = "2.5.2", features = ["serde"] }
25-
serde_json = "1.0.121"
25+
serde_json = "1.0.127"
2626

2727
[build-dependencies]
28-
toml = "0.8.16"
28+
toml = "0.8.19"

0 commit comments

Comments
 (0)