Commit f15e6bb
authored
refactor: move secrets and metadata plugins to runtime (#1673)
* refactor: move secrets and metadata plugins to runtime
* feat: impl config::Source for SecretStore
* ci: skip crates
* fix lock
* Revert "feat: impl config::Source for SecretStore"
This reverts commit 7442c24.
* fix docs
* fix: deprecation warnings
* bump examples
* fix
* fix serenity
* nit
* bump examples
* fix serenity
* fix rocket doc test
* bump examples
* bump examples1 parent b40a14b commit f15e6bb
File tree
28 files changed
+211
-326
lines changed- .circleci
- cargo-shuttle/src
- codegen/src
- common/src
- resources
- metadata
- src
- secrets
- src
- runtime
- src
- scripts
- services
- shuttle-actix-web
- shuttle-poem
- shuttle-rocket
- shuttle-salvo
- shuttle-serenity
- shuttle-thruster
- shuttle-tide
- shuttle-tower
- shuttle-warp
- service/src
28 files changed
+211
-326
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
631 | 631 | | |
632 | 632 | | |
633 | 633 | | |
634 | | - | |
635 | 634 | | |
636 | 635 | | |
637 | | - | |
638 | 636 | | |
639 | 637 | | |
640 | 638 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
443 | 443 | | |
444 | 444 | | |
445 | 445 | | |
446 | | - | |
| 446 | + | |
| 447 | + | |
447 | 448 | | |
448 | 449 | | |
449 | 450 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
| 62 | + | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
- .github/workflows/ci.yml+8-25
- _scripts/check-templates.rs+23-8
- actix-web/clerk/backend/Cargo.toml-1
- actix-web/clerk/backend/src/main.rs+2-2
- axum/hello-world/Cargo.toml+1-2
- axum/metadata/Cargo.toml-1
- axum/metadata/src/main.rs+2-2
- axum/oauth2/.gitignore+2
- axum/oauth2/Cargo.toml+22
- axum/oauth2/README.md+18
- axum/oauth2/migrations/20230815100114_schema.down.sql+3
- axum/oauth2/migrations/20230815100114_schema.up.sql+15
- axum/oauth2/src/main.rs+93
- axum/oauth2/src/routes/errors.rs+46
- axum/oauth2/src/routes/mod.rs+2
- axum/oauth2/src/routes/oauth.rs+114
- bevy/hello-world/.gitignore+5
- bevy/hello-world/Cargo.toml+3
- bevy/hello-world/Makefile+5
- bevy/hello-world/README.md+20
- bevy/hello-world/Shuttle.toml+1
- bevy/hello-world/dist/Roboto-Black.ttf
- bevy/hello-world/dist/index.html+31
- bevy/hello-world/game/Cargo.toml+7
- bevy/hello-world/game/src/main.rs+50
- bevy/hello-world/server/Cargo.toml+11
- bevy/hello-world/server/src/main.rs+11
- ci.sh+2
- fullstack-templates/saas/backend/Cargo.toml-1
- fullstack-templates/saas/backend/src/main.rs+2-2
- loco/hello-world/Cargo.toml+6-9
- loco/hello-world/src/bin/shuttle.rs+3-3
- other/standalone-binary/Cargo.toml-1
- other/standalone-binary/src/bin/shuttle.rs+2-2
- poise/hello-world/Cargo.toml-1
- poise/hello-world/src/main.rs+2-2
- rocket/jwt-authentication/src/claims.rs+2-1
- rocket/secrets/Cargo.toml-1
- rocket/secrets/Secrets.toml.example+1-1
- rocket/secrets/src/main.rs+4-8
- serenity/hello-world/Cargo.toml-1
- serenity/hello-world/src/main.rs+4-8
- serenity/postgres/Cargo.toml-1
- serenity/postgres/src/main.rs+2-2
- serenity/weather-forecast/Cargo.toml+15
- serenity/weather-forecast/README.md+3
- serenity/weather-forecast/Secrets.toml+3
- serenity/weather-forecast/src/main.rs+131
- serenity/weather-forecast/src/weather.rs+88
- templates.toml+133-110
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | | - | |
5 | | - | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
| 3 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
6 | 10 | | |
7 | 11 | | |
8 | 12 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
0 commit comments