diff --git a/Cargo.lock b/Cargo.lock index ac30cde..006aa16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1858,8 +1858,6 @@ dependencies = [ "rust-argon2", "serde", "sha2", - "sqlx", - "sqlx-core", "thiserror", ] @@ -2201,8 +2199,9 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "opaque-ke" -version = "0.6.0-pre.1" -source = "git+https://github.com/novifinancial/opaque-ke?rev=eb59676a940b15f77871aefe1e46d7b5bf85f40a#eb59676a940b15f77871aefe1e46d7b5bf85f40a" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26772682ba4fa69f11ae6e4af8bc83946372981ff31a026648d4acb2553c9ee8" dependencies = [ "base64", "curve25519-dalek", diff --git a/auth/Cargo.toml b/auth/Cargo.toml index 30b17c0..e7132d9 100644 --- a/auth/Cargo.toml +++ b/auth/Cargo.toml @@ -20,30 +20,13 @@ serde = "*" sha2 = "0.9" thiserror = "*" -# TODO: update to 0.6 when out. [dependencies.opaque-ke] -git = "https://github.com/novifinancial/opaque-ke" -rev = "eb59676a940b15f77871aefe1e46d7b5bf85f40a" +version = "0.6" [dependencies.chrono] version = "*" features = [ "serde" ] -[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx] -version = "0.5" -features = [ - "any", - "chrono", - "macros", - "mysql", - "postgres", - "runtime-actix-native-tls", - "sqlite", -] - -[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx-core] -version = "=0.5.1" - # For WASM targets, use the JS getrandom. [target.'cfg(not(target_arch = "wasm32"))'.dependencies.getrandom] version = "0.2" diff --git a/server/Cargo.toml b/server/Cargo.toml index c437d4b..643baa7 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -48,10 +48,8 @@ juniper_actix = "0.4.0" juniper = "0.15.6" itertools = "0.10.1" -# TODO: update to 0.6 when out. [dependencies.opaque-ke] -git = "https://github.com/novifinancial/opaque-ke" -rev = "eb59676a940b15f77871aefe1e46d7b5bf85f40a" +version = "0.6" [dependencies.lettre] version = "0.10.0-rc.3"