Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lto = "fat"
[dependencies]
fastly = "0.12.0"
hmac-sha256 = "1.1.7"
rand = "0.9.0"
rand = "0.10.1"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
base64 = "0.22.1"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.90"
channel = "stable"
targets = [ "wasm32-wasip1" ]
profile = "default"
2 changes: 1 addition & 1 deletion src/pkce.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use base64::{
};
use hmac_sha256::Hash;
use rand::distr::Alphanumeric;
use rand::{rng, Rng};
use rand::{rng, RngExt};
use std::iter;
const CUSTOM_ENGINE: engine::GeneralPurpose =
engine::GeneralPurpose::new(&alphabet::URL_SAFE, general_purpose::NO_PAD);
Expand Down
Loading