File tree 4 files changed +30
-29
lines changed
4 files changed +30
-29
lines changed Original file line number Diff line number Diff line change @@ -20,21 +20,21 @@ self_update = { version = "0.39.0", features = [
20
20
" compression-zip-deflate" ,
21
21
" compression-zip-bzip2" ,
22
22
] }
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 "
27
27
lade-sdk = { path = " ./sdk" , version = " 0.9.2-beta.1" }
28
28
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 "
34
34
futures = " 0.3.30"
35
35
path-clean = " 1.0.1"
36
36
directories = " 5.0.1"
37
- chrono = { version = " 0.4.31 " , features = [" serde" ] }
37
+ chrono = { version = " 0.4.33 " , features = [" serde" ] }
38
38
log = " 0.4.20"
39
39
semver = " 1.0.21"
40
40
sysinfo = " 0.30.5"
Original file line number Diff line number Diff line change 1
1
services :
2
2
vault :
3
- image : hashicorp/vault:1.12
3
+ image : hashicorp/vault:1.15
4
4
ports :
5
5
- " 8200:8200"
6
6
environment :
7
7
VAULT_DEV_ROOT_TOKEN_ID : " token"
8
8
9
9
infisical :
10
- image : infisical/backend:5c55e6e
10
+ image : infisical/infisical:v0.43.19
11
11
ports :
12
12
- " 4000:4000"
13
13
environment :
14
14
- SITE_URL=http://localhost:4000
15
15
- 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=
19
17
- JWT_SERVICE_SECRET=f32f716d70a42c5703f4656015e76200
20
18
- MONGO_URL=mongodb://root:password@mongo:27017/?authSource=admin
19
+ - REDIS_URL=redis://redis:6379
21
20
22
- infisical_web :
23
- image : infisical/frontend:5c55e6e
24
- ports :
25
- - " 3000:3000"
26
- environment :
27
- - SITE_URL=http://localhost:4000
28
-
29
21
mongo :
30
22
image : mongo:6
31
23
ports :
32
24
- " 27017:27017"
33
25
environment :
34
26
- MONGO_INITDB_ROOT_USERNAME=root
35
27
- MONGO_INITDB_ROOT_PASSWORD=password
28
+
29
+ redis :
30
+ image : redis
31
+ ports :
32
+ - 6379:6379
33
+ environment :
34
+ - ALLOW_EMPTY_PASSWORD=yes
Original file line number Diff line number Diff line change 21
21
22
22
^echo e :
23
23
# 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
24
25
E1 : vault://127.0.0.1:8200/secret/password/value1
25
26
E2 : vault://127.0.0.1:8200/secret/password/value2
27
+ E3 : vault://127.0.0.1:8200/secret/org%2Fteam/value
26
28
27
29
^echo f :
28
30
F1 : file://../lade/examples/sources/config.ini?query=.format
Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ async-process = "2.0.1"
12
12
async-trait = " 0.1.77"
13
13
directories = " 5.0.1"
14
14
futures = " 0.3.30"
15
- itertools = " 0.12.0 "
15
+ itertools = " 0.12.1 "
16
16
log = " 0.4.20"
17
17
once_cell = " 1.19.0"
18
- regex = " 1.10.2 "
18
+ regex = " 1.10.3 "
19
19
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 "
23
23
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 "
26
26
url = " 2.5.0"
27
27
urlencoding = " 2.1.3"
You can’t perform that action at this time.
0 commit comments