Adding icarus_envy #39

Merged
phoenix merged 18 commits from experiment-icarus_envy into devel 2025-06-01 23:02:10 +00:00
Showing only changes of commit 4a35802caa - Show all commits

View File

@@ -88,7 +88,8 @@ mod tests {
#[test] #[test]
fn test_tokenize() { fn test_tokenize() {
let special_key = get_key().unwrap(); let rt = tokio::runtime::Runtime::new().unwrap();
let special_key = rt.block_on(icarus_envy::environment::get_secret_key());
match create_token(&special_key) { match create_token(&special_key) {
Ok((token, _duration)) => { Ok((token, _duration)) => {
let result = verify_token(&special_key, &token); let result = verify_token(&special_key, &token);