Skip to content

Commit

Permalink
build[cargo]: update crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HttpRafa committed Aug 26, 2024
1 parent 19de94a commit 13c744c
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 28 deletions.
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ inquire = "0.7.5"
anyhow = "1.0.86"

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

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

# API
url = "2.5.2"
prost = "0.13.1"
tonic = "0.12.1"
tonic = "0.12.2"

[build-dependencies]
toml = "0.8.16"
tonic-build = "0.12.1"
toml = "0.8.19"
tonic-build = "0.12.2"
14 changes: 7 additions & 7 deletions clients/wrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ colored = "2.1.0"
anyhow = "1.0.86"

# Signal handling
ctrlc = "3.4.4"
ctrlc = "3.4.5"

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

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

# Regex parsing
regex = "1.10.5"
regex = "1.10.6"

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

# API
url = "2.5.2"
prost = "0.13.1"
tonic = "0.12.1"
tonic = "0.12.2"

[build-dependencies]
toml = "0.8.16"
tonic-build = "0.12.1"
toml = "0.8.19"
tonic-build = "0.12.2"
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ simplelog = "0.12.2"
colored = "2.1.0"

# Command line arguments
clap = { version = "4.5.11", features = ["derive"] }
clap = { version = "4.5.16", features = ["derive"] }
20 changes: 10 additions & 10 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,35 +16,35 @@ colored = "2.1.0"
anyhow = "1.0.86"

# Signal handling
ctrlc = "3.4.4"
ctrlc = "3.4.5"

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

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

# Configuration
serde = { version = "1.0.204", features = ["derive"] }
toml = "0.8.16"
serde = { version = "1.0.209", features = ["derive"] }
toml = "0.8.19"

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

# API
url = { version = "2.5.2", features = ["serde"] }
prost = "0.13.1"
tonic = "0.12.1"
tonic = "0.12.2"

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

[build-dependencies]
toml = "0.8.16"
tonic-build = "0.12.1"
toml = "0.8.19"
tonic-build = "0.12.2"

[features]
wasm-drivers = ["dep:wasmtime", "dep:wasmtime-wasi", "dep:minreq"]
Binary file modified drivers/files/wasi_snapshot_preview1.reactor.wasm
Binary file not shown.
10 changes: 5 additions & 5 deletions drivers/pterodactyl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
common = { path = "../../common" }

# Wasm plugin
wit-bindgen = "0.28.0"
wit-bindgen = "0.30.0"

# Error handling
anyhow = "1.0.86"
Expand All @@ -17,12 +17,12 @@ anyhow = "1.0.86"
colored = "2.1.0"

# Configuration
serde = { version = "1.0.204", features = ["derive"] }
toml = "0.8.16"
serde = { version = "1.0.209", features = ["derive"] }
toml = "0.8.19"

# Pelican API
url = { version = "2.5.2", features = ["serde"] }
serde_json = "1.0.121"
serde_json = "1.0.127"

[build-dependencies]
toml = "0.8.16"
toml = "0.8.19"

0 comments on commit 13c744c

Please sign in to comment.