Skip to content
Merged
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
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ futures-util = "0.3"

[[example]]
name = "axum_server"
path = "examples/axum_server.rs"
path = "examples/core/axum_server.rs"

[[example]]
name = "hyper"
path = "examples/hyper/main.rs"
path = "examples/core/hyper/main.rs"

[[example]]
name = "id_token"
path = "examples/id_token.rs"
name = "core_id_token"
path = "examples/core/id_token.rs"

[[example]]
name = "easy_id_token"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/id_token.rs → examples/core/id_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//! 3. Set step 2's value as a static value down below
//! 4. Run with the following
//! ```not_rust
//! cargo run --example id_token
//! cargo run --example core_id_token
//! ```
use std::{
collections::HashMap,
Expand Down
Loading