Skip to content

Commit 65f75c7

Browse files
committed
chore: move dev/crates/jwt_tools to components/secutils-jwt-tools
1 parent e7ab2e3 commit 65f75c7

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 16 additions & 16 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ path = "src/main.rs"
1111

1212
[workspace]
1313
members = [
14-
"dev/crates/*"
14+
"components/secutils-jwt-tools"
1515
]
1616

1717
[dependencies]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ SECUTILS_SECURITY__JWT_SECRET=8ffe0cc38d7ff1afa78b6cd5696f2e21
121121
122122
# JWT used by Kratos to authenticate requests to the API.
123123
# Requires config: security.operators = ["@kratos"]
124-
# Generated with: cargo run -p jwt_tools generate --secret 8ffe0cc38d7ff1afa78b6cd5696f2e21 --sub @kratos --exp 1year
124+
# Generated with: cargo run -p secutils-jwt-tools generate --secret 8ffe0cc38d7ff1afa78b6cd5696f2e21 --sub @kratos --exp 1year
125125
SELFSERVICE_FLOWS_REGISTRATION_AFTER_PASSWORD_HOOKS_0_CONFIG_AUTH_CONFIG_VALUE="Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDcyMDExNTcsInN1YiI6IkBrcmF0b3MifQ.O506N__dZu7ZM6p-rEr_QkMn3jp0mRyBwKP7jstRHV8"
126126
SELFSERVICE_FLOWS_REGISTRATION_AFTER_WEBAUTHN_HOOKS_0_CONFIG_AUTH_CONFIG_VALUE="Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDcyMDExNTcsInN1YiI6IkBrcmF0b3MifQ.O506N__dZu7ZM6p-rEr_QkMn3jp0mRyBwKP7jstRHV8"
127127
COURIER_HTTP_REQUEST_CONFIG_AUTH_CONFIG_VALUE="Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDcyMDExNTcsInN1YiI6IkBrcmF0b3MifQ.O506N__dZu7ZM6p-rEr_QkMn3jp0mRyBwKP7jstRHV8"
@@ -134,7 +134,7 @@ the [Web UI](https://github.com/secutils-dev/secutils-webui), but you can also g
134134
APIs directly with `curl` or any other HTTP client. To generate a token, run the following command:
135135

136136
```shell
137-
cargo run -p jwt_tools generate \
137+
cargo run -p secutils-jwt-tools generate \
138138
--secret 8ffe0cc38d7ff1afa78b6cd5696f2e21 \
139139
--sub [email protected] --exp 30days
140140
---

dev/crates/jwt_tools/Cargo.toml renamed to components/secutils-jwt-tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "jwt_tools"
2+
name = "secutils-jwt-tools"
33
version = "0.1.0"
44
edition = "2024"
55

File renamed without changes.

0 commit comments

Comments
 (0)