diff --git a/Cargo.lock b/Cargo.lock index 4339664..c702aea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -58,9 +58,9 @@ dependencies = [ [[package]] name = "argon2" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db4ce4441f99dbd377ca8a8f57b698c44d0d6e712d8329b5040da5a64aa1ce73" +checksum = "95c2fcf79ad1932ac6269a738109997a83c227c09b75842ae564dc8ede6a861c" dependencies = [ "base64ct", "blake2", @@ -1306,9 +1306,9 @@ dependencies = [ [[package]] name = "infer" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3" +checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc" [[package]] name = "inlinable_string" @@ -1935,9 +1935,9 @@ dependencies = [ [[package]] name = "password-hash" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" +checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ "base64ct", "rand_core", diff --git a/Cargo.toml b/Cargo.toml index e05cb16..250ba8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,4 +10,6 @@ chrono = "0.4" sqlx = "0.6" url = "2.3" serde = "1" -serde_json = "1" \ No newline at end of file +serde_json = "1" +nanoid = "0.4" +nanoid-dictionary = "0.4" \ No newline at end of file diff --git a/crates/ezidam/Cargo.toml b/crates/ezidam/Cargo.toml index f825753..d738b38 100644 --- a/crates/ezidam/Cargo.toml +++ b/crates/ezidam/Cargo.toml @@ -7,11 +7,11 @@ edition = "2021" rocket = { version = "=0.5.0-rc.3", features = ["json"] } rocket_db_pools = { version = "=0.1.0-rc.3", features = ["sqlx_sqlite"] } rocket_dyn_templates = { version = "=0.1.0-rc.3", features = ["tera"] } -infer = { version = "0.12.0", default-features = false } +infer = { version = "0.13", default-features = false } erased-serde = "0.3" url = { workspace = true } -identicon-rs = "4.0.1" -futures = "0.3.26" +identicon-rs = "4.0" +futures = "0.3" # local crates database_pool = { path = "../database_pool" } diff --git a/crates/hash/Cargo.toml b/crates/hash/Cargo.toml index aa81e1f..9b83649 100644 --- a/crates/hash/Cargo.toml +++ b/crates/hash/Cargo.toml @@ -4,8 +4,8 @@ version = "0.0.0" edition = "2021" [dependencies] -argon2 = { version = "0.4.1" } -rand_core = { version = "0.6.4", features = ["std"] } +argon2 = { version = "0.5" } +rand_core = { version = "0.6", features = ["std"] } thiserror = { workspace = true } -nanoid = "0.4.0" -nanoid-dictionary = "0.4.3" +nanoid = { workspace = true } +nanoid-dictionary = { workspace = true } diff --git a/crates/id/Cargo.toml b/crates/id/Cargo.toml index e94ccff..ae26df0 100644 --- a/crates/id/Cargo.toml +++ b/crates/id/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] thiserror = { workspace = true } -nanoid = "0.4.0" -nanoid-dictionary = "0.4.3" +nanoid = { workspace = true } +nanoid-dictionary = { workspace = true } serde = { workspace = true, features = ["derive"] } diff --git a/crates/jwt/Cargo.toml b/crates/jwt/Cargo.toml index 379d25f..54e5424 100644 --- a/crates/jwt/Cargo.toml +++ b/crates/jwt/Cargo.toml @@ -8,7 +8,7 @@ jwt-compact = { version = "0.6.0", features = ["with_rsa"] } thiserror = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } -rand = "0.8.5" +rand = "0.8" rsa = "0.7.2" chrono = { workspace = true } diff --git a/crates/openid/Cargo.toml b/crates/openid/Cargo.toml index f924df9..c446ff3 100644 --- a/crates/openid/Cargo.toml +++ b/crates/openid/Cargo.toml @@ -9,4 +9,4 @@ url = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } openidconnect = { version = "3.0.0-alpha.1", default-features = false } -itertools = "0.10.5" \ No newline at end of file +itertools = "0.10" \ No newline at end of file diff --git a/crates/users/Cargo.toml b/crates/users/Cargo.toml index e9e7d31..13544da 100644 --- a/crates/users/Cargo.toml +++ b/crates/users/Cargo.toml @@ -9,4 +9,4 @@ hash = { path = "../hash" } id = { path = "../id" } thiserror = { workspace = true } chrono = { workspace = true } -email_address = { version = "0.2.4", default-features = false } +email_address = { version = "0.2", default-features = false }