feat(oauth): better oauth client matching

This commit is contained in:
Matthew Esposito 2024-11-20 19:19:29 -05:00
parent 95ab6c5385
commit 6be6f892a4
5 changed files with 46 additions and 34 deletions

15
Cargo.lock generated
View file

@ -1327,6 +1327,8 @@ version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
@ -1345,6 +1347,9 @@ name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "redlib"
@ -1380,6 +1385,7 @@ dependencies = [
"serde_json",
"serde_json_path",
"serde_yaml",
"tegen",
"time",
"tokio",
"toml",
@ -1895,6 +1901,15 @@ dependencies = [
"syn",
]
[[package]]
name = "tegen"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10a2d5a357b7c859b410139734a875136473c3b18b1bbd8d5bdc1769d9002acd"
dependencies = [
"rand",
]
[[package]]
name = "tempfile"
version = "3.14.0"