diff --git a/crypt-cloud/Cargo.toml b/crypt-cloud/Cargo.toml index 39a27d1..c722aa9 100644 --- a/crypt-cloud/Cargo.toml +++ b/crypt-cloud/Cargo.toml @@ -12,7 +12,7 @@ thiserror = { workspace = true } crypt-core = { path = "../crypt-core" } -reqwest = { version = "0.11", features = ["json"] } # HTTP client +reqwest = { version = "0.12", features = ["json"] } # HTTP client tokio = { version = "1", features = ["full"] } # Async Runtime serde_json = "1.0" async-recursion = "1.0.5" # Handles Async Recursion boxing \ No newline at end of file diff --git a/crypt-ui/Cargo.toml b/crypt-ui/Cargo.toml index 92acf75..f14a0ca 100644 --- a/crypt-ui/Cargo.toml +++ b/crypt-ui/Cargo.toml @@ -12,7 +12,7 @@ workspace = "../" [dependencies] # General tokio = { version = "1", features = ["full"] } # Async Runtime -reqwest = { version = "0.11", features = ["json","multipart"] } # HTTP client +reqwest = { version = "0.12", features = ["json","multipart"] } # HTTP client # CLI clap = { version = "4.4.11", features = ["derive", "cargo"] } clap-markdown = "0.1.3"