diff options
| author | rtkay123 <dev@kanjala.com> | 2026-04-10 23:48:24 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2026-04-10 23:48:24 +0200 |
| commit | f06288f156ccb8f9ebf35782a179bf57e6bc8fc2 (patch) | |
| tree | 2e9eb80237094d930b4f3a54261fac0cb3350129 /Cargo.lock | |
| parent | be2af8a5fe2e58953b4970e3fed970165fc4b4ca (diff) | |
| download | sellershut-f06288f156ccb8f9ebf35782a179bf57e6bc8fc2.tar.bz2 sellershut-f06288f156ccb8f9ebf35782a179bf57e6bc8fc2.zip | |
feat(auth): get user
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 82 |
1 files changed, 81 insertions, 1 deletions
@@ -97,6 +97,7 @@ dependencies = [ "async-trait", "oauth2", "redis", + "reqwest 0.13.2", "secrecy", "serde", "sh-util", @@ -280,6 +281,28 @@ dependencies = [ ] [[package]] +name = "axum-extra" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fef252edff26ddba56bbcdf2ee3307b8129acb86f5749b68990c168a6fcc9c76" +dependencies = [ + "axum", + "axum-core", + "bytes", + "futures-core", + "futures-util", + "headers", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] name = "axum-macros" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -996,6 +1019,30 @@ dependencies = [ ] [[package]] +name = "headers" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb" +dependencies = [ + "base64 0.22.1", + "bytes", + "headers-core", + "http", + "httpdate", + "mime", + "sha1", +] + +[[package]] +name = "headers-core" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4" +dependencies = [ + "http", +] + +[[package]] name = "heck" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1545,7 +1592,7 @@ dependencies = [ "getrandom 0.2.17", "http", "rand 0.8.5", - "reqwest", + "reqwest 0.12.28", "serde", "serde_json", "serde_path_to_error", @@ -1955,6 +2002,37 @@ dependencies = [ ] [[package]] +name = "reqwest" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-core", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "sync_wrapper", + "tokio", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] name = "ring" version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2108,8 +2186,10 @@ dependencies = [ "api-auth", "api-core", "axum", + "axum-extra", "bon", "clap", + "reqwest 0.13.2", "secrecy", "serde", "serde_json", |
