Update (#2)
Release Tagging / release (push) Successful in 49s
Rust Build / Check (push) Successful in 1m39s
Rust Build / Test Suite (push) Successful in 2m1s
Rust Build / Rustfmt (push) Successful in 1m43s
Rust Build / Clippy (push) Successful in 1m34s
Rust Build / build (push) Successful in 3m17s

Reviewed-on: phoenix/icarus_auth#2
This commit was merged in pull request #2.
This commit is contained in:
2026-07-07 17:35:28 -04:00
parent 54b0710298
commit e518b1e096
10 changed files with 293 additions and 713 deletions
+1 -4
View File
@@ -123,10 +123,7 @@ mod tests {
#[test]
fn test_tokenize() {
let rt = tokio::runtime::Runtime::new().unwrap();
let special_key = rt
.block_on(icarus_envy::environment::get_secret_key())
.value;
let special_key = icarus_envy::environment::get_secret_key().value;
let id = uuid::Uuid::new_v4();
match create_token(&special_key, &id) {
Ok((token, _duration)) => {