Skip to content

Commit 997dd42

Browse files
authored
chore: updated dependencies (#88)
1 parent 6586990 commit 997dd42

File tree

9 files changed

+100
-50
lines changed

9 files changed

+100
-50
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
.git
33

44
**/target
5-
target
5+
target

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ JWT_SECRET = h3EX6ZaWGrR9uwd8MkzbxA2yQmBPvCfn
1818
JWT_EXPIRE_ACCESS_TOKEN_SECONDS = 3600 # 1 hour
1919
JWT_EXPIRE_REFRESH_TOKEN_SECONDS = 7776000 # 90 days
2020
JWT_VALIDATION_LEEWAY_SECONDS = 60 # 1 minute, default
21-
JWT_ENABLE_REVOKED_TOKENS = true # using revoked tokens
21+
JWT_ENABLE_REVOKED_TOKENS = true # using revoked tokens

.env_docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ JWT_SECRET = h3EX6ZaWGrR9uwd8MkzbxA2yQmBPvCfn
1818
JWT_EXPIRE_ACCESS_TOKEN_SECONDS = 3600 # 1 hour
1919
JWT_EXPIRE_REFRESH_TOKEN_SECONDS = 7776000 # 90 days
2020
JWT_VALIDATION_LEEWAY_SECONDS = 60 # 1 minute, default
21-
JWT_ENABLE_REVOKED_TOKENS = true # using revoked tokens
21+
JWT_ENABLE_REVOKED_TOKENS = true # using revoked tokens

.env_test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ JWT_SECRET = h3eX9ZaWGQr1uwd8MkzbxA2yQmBPvSfK
2020
JWT_EXPIRE_ACCESS_TOKEN_SECONDS = 2
2121
JWT_EXPIRE_REFRESH_TOKEN_SECONDS = 5
2222
JWT_VALIDATION_LEEWAY_SECONDS = 1
23-
JWT_ENABLE_REVOKED_TOKENS = true
23+
JWT_ENABLE_REVOKED_TOKENS = true

.env_test_docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ JWT_SECRET = h3eX9ZaWGQr1uwd8MkzbxA2yQmBPvSfK
2121
JWT_EXPIRE_ACCESS_TOKEN_SECONDS = 2
2222
JWT_EXPIRE_REFRESH_TOKEN_SECONDS = 5
2323
JWT_VALIDATION_LEEWAY_SECONDS = 1
24-
JWT_ENABLE_REVOKED_TOKENS = true
24+
JWT_ENABLE_REVOKED_TOKENS = true

Cargo.lock

Lines changed: 92 additions & 42 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
@@ -24,7 +24,7 @@ hyper-util = { version = "0.1", features = ["full"] }
2424

2525
serde = { version = "1.0", features = ["derive"] }
2626
serde_json = "1.0"
27-
uuid = { version = "1.12", features = [
27+
uuid = { version = "1.13", features = [
2828
"v4",
2929
"fast-rng",
3030
"macro-diagnostics",

docker-compose.full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ services:
2828

2929
volumes:
3030
redis:
31-
postgres:
31+
postgres:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ services:
1818

1919
volumes:
2020
redis:
21-
postgres:
21+
postgres:

0 commit comments

Comments
 (0)