Skip to content

Commit 86926b5

Browse files
committed
feat: upgrade
1 parent 5f42384 commit 86926b5

File tree

4 files changed

+30
-29
lines changed

4 files changed

+30
-29
lines changed

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ self_update = { version = "0.39.0", features = [
2020
"compression-zip-deflate",
2121
"compression-zip-bzip2",
2222
] }
23-
serde = { version = "1.0.195", features = ["derive"] }
24-
serde_yaml = "0.9.30"
25-
clap = { version = "4.4.16", features = ["derive"] }
26-
regex = "1.10.2"
23+
serde = { version = "1.0.196", features = ["derive"] }
24+
serde_yaml = "0.9.31"
25+
clap = { version = "4.4.18", features = ["derive"] }
26+
regex = "1.10.3"
2727
lade-sdk = { path = "./sdk", version = "0.9.2-beta.1" }
2828
tokio = { version = "1", features = ["full"] }
29-
indexmap = { version = "2.1.0", features = ["serde"] }
30-
clap-verbosity-flag = "2.1.1"
31-
env_logger = "0.10.1"
32-
openssl = { version = "0.10.62", features = ["vendored"] }
33-
serde_json = "1.0.111"
29+
indexmap = { version = "2.2.2", features = ["serde"] }
30+
clap-verbosity-flag = "2.1.2"
31+
env_logger = "0.11.1"
32+
openssl = { version = "0.10.63", features = ["vendored"] }
33+
serde_json = "1.0.113"
3434
futures = "0.3.30"
3535
path-clean = "1.0.1"
3636
directories = "5.0.1"
37-
chrono = { version = "0.4.31", features = ["serde"] }
37+
chrono = { version = "0.4.33", features = ["serde"] }
3838
log = "0.4.20"
3939
semver = "1.0.21"
4040
sysinfo = "0.30.5"

compose.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
11
services:
22
vault:
3-
image: hashicorp/vault:1.12
3+
image: hashicorp/vault:1.15
44
ports:
55
- "8200:8200"
66
environment:
77
VAULT_DEV_ROOT_TOKEN_ID: "token"
88

99
infisical:
10-
image: infisical/backend:5c55e6e
10+
image: infisical/infisical:v0.43.19
1111
ports:
1212
- "4000:4000"
1313
environment:
1414
- SITE_URL=http://localhost:4000
1515
- ENCRYPTION_KEY=6c1fe4e407b8911c104518103505b218
16-
- JWT_SIGNUP_SECRET=3679e04ca949f914c03332aaaeba805a
17-
- JWT_REFRESH_SECRET=5f2f3c8f0159068dc2bbb3a652a716ff
18-
- JWT_AUTH_SECRET=4be6ba5602e0fa0ac6ac05c3cd4d247f
16+
- AUTH_SECRET=5lrMXKKWCVocS/uerPsl7V+TX/aaUaI7iDkgl3tSmLE=
1917
- JWT_SERVICE_SECRET=f32f716d70a42c5703f4656015e76200
2018
- MONGO_URL=mongodb://root:password@mongo:27017/?authSource=admin
19+
- REDIS_URL=redis://redis:6379
2120

22-
infisical_web:
23-
image: infisical/frontend:5c55e6e
24-
ports:
25-
- "3000:3000"
26-
environment:
27-
- SITE_URL=http://localhost:4000
28-
2921
mongo:
3022
image: mongo:6
3123
ports:
3224
- "27017:27017"
3325
environment:
3426
- MONGO_INITDB_ROOT_USERNAME=root
3527
- MONGO_INITDB_ROOT_PASSWORD=password
28+
29+
redis:
30+
image: redis
31+
ports:
32+
- 6379:6379
33+
environment:
34+
- ALLOW_EMPTY_PASSWORD=yes

lade.yml

+2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@
2121

2222
^echo e:
2323
# vault kv put -address=http://127.0.0.1:8200 -mount=secret password value1=itsasecret value2=itsanotsecret
24+
# vault kv put -address=http://127.0.0.1:8200 -mount=secret org/team value=secret
2425
E1: vault://127.0.0.1:8200/secret/password/value1
2526
E2: vault://127.0.0.1:8200/secret/password/value2
27+
E3: vault://127.0.0.1:8200/secret/org%2Fteam/value
2628

2729
^echo f:
2830
F1: file://../lade/examples/sources/config.ini?query=.format

sdk/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ async-process = "2.0.1"
1212
async-trait = "0.1.77"
1313
directories = "5.0.1"
1414
futures = "0.3.30"
15-
itertools = "0.12.0"
15+
itertools = "0.12.1"
1616
log = "0.4.20"
1717
once_cell = "1.19.0"
18-
regex = "1.10.2"
18+
regex = "1.10.3"
1919
rust-ini = "0.20.0"
20-
serde = { version = "1.0.195", features = ["derive"] }
21-
serde_json = "1.0.111"
22-
serde_yaml = "0.9.30"
20+
serde = { version = "1.0.196", features = ["derive"] }
21+
serde_json = "1.0.113"
22+
serde_yaml = "0.9.31"
2323
tempfile = "3.9.0"
24-
tokio = { version = "1.35.1", features = ["fs"] }
25-
toml = "0.8.8"
24+
tokio = { version = "1.36.0", features = ["fs"] }
25+
toml = "0.8.9"
2626
url = "2.5.0"
2727
urlencoding = "2.1.3"

0 commit comments

Comments
 (0)