diff --git a/Cargo.lock b/Cargo.lock index 06bf4a4..a4c4d72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1611,7 +1611,7 @@ dependencies = [ "thiserror 2.0.17", "tokio", "tokio-test", - "toml 0.8.23", + "toml 0.9.8", "tracing", "which", ] @@ -1808,7 +1808,7 @@ dependencies = [ "serde_json", "thiserror 2.0.17", "tokio", - "toml 0.8.23", + "toml 0.9.8", ] [[package]] diff --git a/crates/impulse-door/Cargo.toml b/crates/impulse-door/Cargo.toml index faa90cf..bfd4d49 100644 --- a/crates/impulse-door/Cargo.toml +++ b/crates/impulse-door/Cargo.toml @@ -13,7 +13,7 @@ tokio = { workspace = true, features = ["process", "io-util", "fs", "sync", "tim async-trait = { workspace = true } thiserror = { workspace = true } serde = { workspace = true, features = ["derive"] } -toml = "0.8" +toml = "0.9" tempfile = "3.14" chrono = { version = "0.4", features = ["serde"] } tracing = "0.1" diff --git a/crates/impulse-terminal/Cargo.toml b/crates/impulse-terminal/Cargo.toml index 1e87080..5f30bb0 100644 --- a/crates/impulse-terminal/Cargo.toml +++ b/crates/impulse-terminal/Cargo.toml @@ -14,6 +14,6 @@ async-trait = { workspace = true } thiserror = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } -toml = "0.8" +toml = "0.9" tokio = { workspace = true, features = ["fs"] } rand = { workspace = true }