Skip to content
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
559 changes: 316 additions & 243 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rust-version = "1.88"

[workspace.dependencies]
# Async runtime
tokio = { version = "1.47", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }

# Terminal I/O
Expand All @@ -53,7 +53,7 @@ serde-big-array = "0.5"
binrw = "0.15"

# Bit manipulation
bitflags = { version = "2.6", features = ["serde"] }
bitflags = { version = "2.11", features = ["serde"] }

# Error handling
thiserror = "2.0"
Expand All @@ -66,7 +66,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Authentication
argon2 = "0.5"
sha2 = "0.10"
uuid = { version = "1.11", features = ["v4", "serde"] }
uuid = { version = "1.21", features = ["v4", "serde"] }
rand = "0.9"
chrono = { version = "0.4", features = ["serde"] }

Expand All @@ -79,7 +79,7 @@ tower = "0.5"
tower-http = { version = "0.6", features = ["fs", "trace"] }

# Testing
proptest = "1.5"
proptest = "1.10"
criterion = { version = "0.5", features = ["html_reports"] }

[profile.dev]
Expand Down
8 changes: 4 additions & 4 deletions crates/impconfig/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ path = "src/main.rs"
impulse-config = { path = "../impulse-config" }
impulse-types = { path = "../impulse-types" }
clap = { version = "4.5", features = ["derive", "cargo"] }
colored = "3.0"
colored = "3.1"
serde_json = "1.0"
toml = { workspace = true }
anyhow = "1.0"

[dev-dependencies]
tempfile = "3.8"
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.25"
assert_cmd = "2.1"
predicates = "3.1"
4 changes: 2 additions & 2 deletions crates/impulse-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ default = []
hot-reload = ["notify", "tokio", "async-trait"]

[dev-dependencies]
tempfile = "3.8"
serial_test = "3.0"
tempfile = "3.25"
serial_test = "3.3"
proptest = { workspace = true }
2 changes: 1 addition & 1 deletion crates/impulse-door/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async-trait = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true, features = ["derive"] }
toml = "0.8"
tempfile = "3.14"
tempfile = "3.25"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
which = "7.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/impulse-file/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ tempfile = "3"
hex = "0.4"

# Data structures
indexmap = "2.8"
indexmap = "2.13"
2 changes: 1 addition & 1 deletion crates/impulse-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impulse-config = { path = "../impulse-config" }
tokio = { workspace = true, features = ["full", "test-util"] }

# Testing infrastructure
tempfile = "3.14"
tempfile = "3.25"
proptest = { workspace = true }
fake = { version = "2.10", features = ["derive"] }
criterion = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/impulse-logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde = { workspace = true }
serde_json = { workspace = true }

# Compression
flate2 = "1.0"
flate2 = "1.1"

# File system operations
tokio = { workspace = true, features = ["fs", "time", "sync"] }
Expand All @@ -32,9 +32,9 @@ anyhow = { workspace = true }

[dev-dependencies]
tokio = { workspace = true, features = ["rt", "macros", "test-util"] }
tempfile = "3.8"
tempfile = "3.25"
proptest = { workspace = true }
serial_test = "3.0"
serial_test = "3.3"

[[bench]]
name = "logging_benchmarks"
Expand Down
2 changes: 1 addition & 1 deletion crates/impulse-message/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ csv = "1.3" # CSV export support
serde_json = "1.0" # JSON serialization

[dev-dependencies]
tempfile = "3.8"
tempfile = "3.25"
Loading