diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-26 19:24:38 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-26 19:24:38 +0200 |
commit | e26d87f4fa18999c6bcfbcf32cfa85adab11acdd (patch) | |
tree | 603c6dacb6c448984bdcc5fa2b4a9314f1a23960 /Cargo.lock | |
parent | 236876f1d0539ac22a3977fd8599933725ad0f90 (diff) | |
download | sellershut-e26d87f4fa18999c6bcfbcf32cfa85adab11acdd.tar.bz2 sellershut-e26d87f4fa18999c6bcfbcf32cfa85adab11acdd.zip |
feat(auth): create user call
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 130 |
1 files changed, 60 insertions, 70 deletions
@@ -197,41 +197,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] -name = "auth-service" -version = "0.1.0" -dependencies = [ - "anyhow", - "axum", - "axum-extra", - "base64", - "clap", - "config", - "futures-util", - "jsonwebtoken", - "nanoid", - "oauth2", - "reqwest", - "sellershut-core", - "serde", - "serde_json", - "sqlx", - "stack-up", - "time", - "tokio", - "tonic", - "tonic-reflection", - "tower", - "tower-http", - "tower-sessions", - "tower-sessions-core", - "tower-sessions-moka-store", - "tower-sessions-sqlx-store", - "tracing", - "url", - "uuid", -] - -[[package]] name = "autocfg" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2106,41 +2071,6 @@ dependencies = [ ] [[package]] -name = "profile-service" -version = "0.1.0" -dependencies = [ - "anyhow", - "axum", - "axum-extra", - "base64", - "clap", - "config", - "futures-util", - "jsonwebtoken", - "nanoid", - "oauth2", - "reqwest", - "sellershut-core", - "serde", - "serde_json", - "sqlx", - "stack-up", - "time", - "tokio", - "tonic", - "tonic-reflection", - "tower", - "tower-http", - "tower-sessions", - "tower-sessions-core", - "tower-sessions-moka-store", - "tower-sessions-sqlx-store", - "tracing", - "url", - "uuid", -] - -[[package]] name = "prost" version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2671,6 +2601,41 @@ dependencies = [ ] [[package]] +name = "sellershut-auth" +version = "0.1.0" +dependencies = [ + "anyhow", + "axum", + "axum-extra", + "base64", + "clap", + "config", + "futures-util", + "jsonwebtoken", + "nanoid", + "oauth2", + "reqwest", + "sellershut-core", + "serde", + "serde_json", + "sqlx", + "stack-up", + "time", + "tokio", + "tonic", + "tonic-reflection", + "tower", + "tower-http", + "tower-sessions", + "tower-sessions-core", + "tower-sessions-moka-store", + "tower-sessions-sqlx-store", + "tracing", + "url", + "uuid", +] + +[[package]] name = "sellershut-core" version = "0.1.0" dependencies = [ @@ -2684,6 +2649,31 @@ dependencies = [ ] [[package]] +name = "sellershut-profiles" +version = "0.1.0" +dependencies = [ + "anyhow", + "base64", + "clap", + "config", + "futures-util", + "nanoid", + "prost", + "sellershut-core", + "serde", + "serde_json", + "sqlx", + "stack-up", + "time", + "tokio", + "tonic", + "tonic-reflection", + "tracing", + "url", + "uuid", +] + +[[package]] name = "semver" version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" |