diff --git a/Cargo.lock b/Cargo.lock index 8758c3199..99d48cc4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8105,7 +8105,7 @@ dependencies = [ "test-log", "thiserror 1.0.69", "tokio", - "toml 0.8.23", + "toml 1.1.2+spec-1.1.0", "uuid", ] @@ -8908,7 +8908,7 @@ dependencies = [ "tokio", "tokio-test", "tokio-util", - "toml 0.8.23", + "toml 1.1.2+spec-1.1.0", "tracing", "uuid", "whisper-rs", @@ -9045,7 +9045,7 @@ dependencies = [ "thiserror 1.0.69", "tokio", "tokio-test", - "toml 0.8.23", + "toml 1.1.2+spec-1.1.0", "tower", "tower-http 0.5.2", "urlencoding", @@ -9391,10 +9391,12 @@ version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee" dependencies = [ + "indexmap 2.14.0", "serde_core", "serde_spanned 1.1.1", "toml_datetime 1.1.1+spec-1.1.0", "toml_parser", + "toml_writer", "winnow 1.0.3", ] @@ -9445,6 +9447,12 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" +[[package]] +name = "toml_writer" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db" + [[package]] name = "tower" version = "0.5.3" diff --git a/crates/terraphim_tinyclaw/Cargo.toml b/crates/terraphim_tinyclaw/Cargo.toml index ed0203cd3..3142bfcaa 100644 --- a/crates/terraphim_tinyclaw/Cargo.toml +++ b/crates/terraphim_tinyclaw/Cargo.toml @@ -24,7 +24,7 @@ tokio-util = { version = "0.7", features = ["rt"] } serde = { workspace = true } serde_json = { workspace = true } serde_yaml = "0.9" -toml = "0.8" +toml = "1.1" # HTTP client reqwest = { workspace = true } diff --git a/crates/terraphim_validation/Cargo.toml b/crates/terraphim_validation/Cargo.toml index 91e6895c0..02400617d 100644 --- a/crates/terraphim_validation/Cargo.toml +++ b/crates/terraphim_validation/Cargo.toml @@ -33,7 +33,7 @@ terraphim_server = { path = "../../terraphim_server" } # Configuration and CLI clap = { version = "4.0", features = ["derive", "env"] } config = "0.15" -toml = "0.8" +toml = "1.1" env_logger = "0.11" # HTTP and networking diff --git a/terraphim_firecracker/Cargo.toml b/terraphim_firecracker/Cargo.toml index 7f1763894..956e43e56 100644 --- a/terraphim_firecracker/Cargo.toml +++ b/terraphim_firecracker/Cargo.toml @@ -33,7 +33,7 @@ parking_lot = "0.12" dashmap = "6.1" futures = "0.3" fastrand = "2.0" -toml = "0.8" +toml = "1.1" [dev-dependencies] tempfile = "3.27"