Skip to content
Merged
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
69 changes: 34 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"

# Async runtime - feature-optimized for size
tokio = { version = "1.42", default-features = false, features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "process", "io-std", "fs", "signal"] }
tokio = { version = "1.50", default-features = false, features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "process", "io-std", "fs", "signal"] }
tokio-util = { version = "0.7", default-features = false }
tokio-stream = { version = "0.1.18", default-features = false, features = ["fs", "sync"] }

Expand Down Expand Up @@ -62,13 +62,13 @@ urlencoding = "2.1"
nanohtml2text = "0.2"

# Zip archive extraction
zip = { version = "8.1", default-features = false, features = ["deflate"] }
zip = { version = "8.2", default-features = false, features = ["deflate"] }

# XML parsing (DOCX text extraction)
quick-xml = "0.37"

# Optional Rust-native browser automation backend
fantoccini = { version = "0.22.0", optional = true, default-features = false, features = ["rustls-tls"] }
fantoccini = { version = "0.22.1", optional = true, default-features = false, features = ["rustls-tls"] }

# Optional in-process WASM runtime for sandboxed tool execution
wasmi = { version = "1.0.9", optional = true, default-features = true }
Expand Down Expand Up @@ -133,7 +133,7 @@ glob = "0.3"
which = "8.0"

# Temporary directory creation (for self-update)
tempfile = "3.14"
tempfile = "3.26"

# WebSocket client channels (Discord/Lark/DingTalk/Nostr)
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-webpki-roots"] }
Expand Down Expand Up @@ -259,7 +259,7 @@ strip = true
panic = "abort"

[dev-dependencies]
tempfile = "3.14"
tempfile = "3.26"
criterion = { version = "0.8", features = ["async_tokio"] }
wiremock = "0.6"
scopeguard = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions crates/robot-kit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ vision = [] # Camera + vision model
# zerobuild = { path = "../..", optional = true }

# Async runtime
tokio = { version = "1.42", features = ["rt-multi-thread", "macros", "time", "sync", "process", "fs", "io-util"] }
tokio = { version = "1.50", features = ["rt-multi-thread", "macros", "time", "sync", "process", "fs", "io-util"] }

# Serialization
serde = { version = "1.0", features = ["derive"] }
Expand Down Expand Up @@ -61,7 +61,7 @@ rppal = { version = "0.22", optional = true }

[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.14"
tempfile = "3.26"

[package.metadata.docs.rs]
all-features = true
Loading