Skip to content

Commit 9d0bfa7

Browse files
feat: actions
1 parent f97a7b0 commit 9d0bfa7

65 files changed

Lines changed: 1911 additions & 1843 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 93 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ leptos_meta = "0.8.0-beta"
2929
leptos_router = "0.8.0-beta"
3030
sea-orm = "1.1.2"
3131
sea-orm-migration = "1.1.2"
32+
secrecy = "0.10.3"
3233
serde = "1.0.215"
3334
serde_json = "1.0.133"
3435
shield = { path = "./packages/core/shield", version = "0.0.4" }

examples/axum/Cargo.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[package]
2+
name = "shield-examples-axum"
3+
description = "Example with Axum."
4+
publish = false
5+
6+
authors.workspace = true
7+
edition.workspace = true
8+
license.workspace = true
9+
repository.workspace = true
10+
version.workspace = true
11+
12+
[dependencies]
13+
axum = { workspace = true }
14+
shield.workspace = true
15+
shield-axum = { workspace = true, features = ["utoipa"] }
16+
shield-memory = { workspace = true, features = ["method-oidc"] }
17+
shield-oidc = { workspace = true, features = ["native-tls"] }
18+
time = "0.3.37"
19+
tokio = { workspace = true, features = ["rt-multi-thread"] }
20+
tower-sessions = { workspace = true }
21+
tracing.workspace = true
22+
tracing-subscriber.workspace = true
23+
utoipa.workspace = true
24+
utoipa-swagger-ui = { version = "9.0.0", features = ["axum", "vendored"] }

0 commit comments

Comments
 (0)