diff --git a/Cargo.toml b/Cargo.toml index f49f19e..2fd8755 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/examples/axum_server.rs b/examples/core/axum_server.rs similarity index 100% rename from examples/axum_server.rs rename to examples/core/axum_server.rs diff --git a/examples/hyper/compose.yaml b/examples/core/hyper/compose.yaml similarity index 100% rename from examples/hyper/compose.yaml rename to examples/core/hyper/compose.yaml diff --git a/examples/hyper/index.html b/examples/core/hyper/index.html similarity index 100% rename from examples/hyper/index.html rename to examples/core/hyper/index.html diff --git a/examples/hyper/login_service.rs b/examples/core/hyper/login_service.rs similarity index 100% rename from examples/hyper/login_service.rs rename to examples/core/hyper/login_service.rs diff --git a/examples/hyper/main.rs b/examples/core/hyper/main.rs similarity index 100% rename from examples/hyper/main.rs rename to examples/core/hyper/main.rs diff --git a/examples/hyper/protected.rs b/examples/core/hyper/protected.rs similarity index 100% rename from examples/hyper/protected.rs rename to examples/core/hyper/protected.rs diff --git a/examples/hyper/router.rs b/examples/core/hyper/router.rs similarity index 100% rename from examples/hyper/router.rs rename to examples/core/hyper/router.rs diff --git a/examples/id_token.rs b/examples/core/id_token.rs similarity index 99% rename from examples/id_token.rs rename to examples/core/id_token.rs index bd3ea3a..707ad8c 100644 --- a/examples/id_token.rs +++ b/examples/core/id_token.rs @@ -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,