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 /crates/profile-service/Cargo.toml | |
parent | 236876f1d0539ac22a3977fd8599933725ad0f90 (diff) | |
download | sellershut-e26d87f4fa18999c6bcfbcf32cfa85adab11acdd.tar.bz2 sellershut-e26d87f4fa18999c6bcfbcf32cfa85adab11acdd.zip |
feat(auth): create user call
Diffstat (limited to 'crates/profile-service/Cargo.toml')
-rw-r--r-- | crates/profile-service/Cargo.toml | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/crates/profile-service/Cargo.toml b/crates/profile-service/Cargo.toml index 409110b..e56db3a 100644 --- a/crates/profile-service/Cargo.toml +++ b/crates/profile-service/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "profile-service" +name = "sellershut-profiles" version = "0.1.0" edition = "2024" license.workspace = true @@ -9,16 +9,12 @@ description.workspace = true [dependencies] anyhow.workspace = true -axum = { workspace = true, features = ["macros"] } -axum-extra = { version = "0.10.1", features = ["typed-header"] } base64.workspace = true clap = { workspace = true, features = ["derive"] } config = { workspace = true, features = ["convert-case", "toml"] } futures-util.workspace = true -jsonwebtoken = "9.3.1" nanoid.workspace = true -oauth2 = "5.0.0" -reqwest = { workspace = true, features = ["json", "rustls-tls"] } +prost.workspace = true sellershut-core = { workspace = true, features = ["profile", "serde"] } serde = { workspace = true, features = ["derive"] } serde_json.workspace = true @@ -27,12 +23,10 @@ time = { workspace = true, features = ["parsing", "serde"] } tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] } tonic.workspace = true tonic-reflection = "0.13.0" -tower = { workspace = true, features = ["steer", "util"] } -tower-http = { workspace = true, features = ["map-request-body", "trace", "util"] } -tower-sessions = "0.14.0" -tower-sessions-core = { version = "0.14.0", features = ["deletion-task"] } -tower-sessions-moka-store = "0.15.0" -tower-sessions-sqlx-store = { version = "0.15.0", features = ["postgres"] } tracing.workspace = true url.workspace = true uuid = { workspace = true, features = ["serde", "v7"] } + +[dependencies.stack-up] +workspace = true +features = ["api", "cache", "postgres", "tracing"] |