diff --git a/Cargo.lock b/Cargo.lock index d85873994..2810559a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6698,22 +6698,22 @@ dependencies = [ [[package]] name = "opendal" -version = "0.54.1" +version = "0.55.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42afda58fa2cf50914402d132cc1caacff116a85d10c72ab2082bb7c50021754" +checksum = "d075ab8a203a6ab4bc1bce0a4b9fe486a72bf8b939037f4b78d95386384bc80a" dependencies = [ "anyhow", "backon", "base64 0.22.1", "bb8", "bytes", - "chrono", "crc32c", "dashmap 6.1.0", "futures", "getrandom 0.2.16", "http 1.4.0", "http-body 1.0.1", + "jiff", "log", "md-5", "ouroboros", @@ -6730,6 +6730,7 @@ dependencies = [ "sled", "sqlx", "tokio", + "url", "uuid", ] diff --git a/crates/terraphim_config/Cargo.toml b/crates/terraphim_config/Cargo.toml index 74717b766..2168d453d 100644 --- a/crates/terraphim_config/Cargo.toml +++ b/crates/terraphim_config/Cargo.toml @@ -24,7 +24,7 @@ terraphim_automata = { path = "../terraphim_automata", version = "1.0.0", featur terraphim_persistence = { path = "../terraphim_persistence", version = "1.0.0" } terraphim_settings = { path = "../terraphim_settings", version = "1.0.0" } -opendal = { version = "0.54", features = [ +opendal = { version = "0.55", features = [ "services-dashmap", "services-sled", ] } diff --git a/crates/terraphim_persistence/Cargo.toml b/crates/terraphim_persistence/Cargo.toml index 5686ca652..fb7573a74 100644 --- a/crates/terraphim_persistence/Cargo.toml +++ b/crates/terraphim_persistence/Cargo.toml @@ -23,7 +23,7 @@ tracing-subscriber = { version = "0.3", features = [ async-once-cell = "0.5.3" async-trait = "0.1.74" log = "0.4" -opendal = { version = "0.54", default-features = false, features = [ +opendal = { version = "0.55", default-features = false, features = [ "services-memory", # Always needed ] } serde = { version = "1.0.182", features = ["derive"] } diff --git a/crates/terraphim_service/Cargo.toml b/crates/terraphim_service/Cargo.toml index 8bb2bdb8e..47832f193 100644 --- a/crates/terraphim_service/Cargo.toml +++ b/crates/terraphim_service/Cargo.toml @@ -21,7 +21,7 @@ terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "1.0.0" } ahash = { version = "0.8.8", features = ["serde"] } thiserror = "1.0.58" -opendal = { version = "0.54" } +opendal = { version = "0.55" } serde_json = "1.0.116" serde = { version = "1.0.198", features = ["serde_derive"] } log = "0.4.21"