Skip to content

Commit

Permalink
feat: upgrade libs
Browse files Browse the repository at this point in the history
  • Loading branch information
zifeo committed Apr 17, 2023
1 parent 21a3e1b commit c9a687b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ self_update = { version = "0.36.0", features = [
"compression-zip-deflate",
"compression-zip-bzip2",
] }
serde = { version = "1.0.159", features = ["derive"] }
serde_yaml = "0.9.19"
clap = { version = "4.2.1", features = ["derive"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_yaml = "0.9.21"
clap = { version = "4.2.2", features = ["derive"] }
regex = "1.7.3"
lade-sdk = { path = "./sdk", version = "0.5.4-beta.1" }
tokio = { version = "1", features = ["full"] }
indexmap = { version = "1.9.3", features = ["serde"] }
clap-verbosity-flag = "2.0.1"
env_logger = "0.10.0"
openssl = { version = "0.10.49", features = ["vendored"] }
serde_json = "1.0.95"
openssl = { version = "0.10.50", features = ["vendored"] }
serde_json = "1.0.96"
futures = "0.3.28"
path-clean = "1.0.1"

[dev-dependencies]
assert_cmd = "2.0.10"
assert_cmd = "2.0.11"
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

![Crates.io](https://img.shields.io/crates/v/lade)

Lade (/leɪd/) is a tool allowing you to automatically load secrets from your
preferred vault into environment variables. It limits the exposure of secrets to
the time the command requiring the secrets lives.

![Demo](./examples/demo.gif)

> Lade is part of the
> [Metatype ecosystem](https://github.com/metatypedev/metatype). Consider
> checking out how this component integrates with the whole ecosystem and browse
> the
> [documentation](https://metatype.dev?utm_source=github&utm_medium=readme&utm_campaign=lade)
> to see more examples.
Lade (/leɪd/) is a tool allowing you to automatically load secrets from your
preferred vault into environment variables. It limits the exposure of secrets to
the time the command requiring the secrets lives.

![Demo](./examples/demo.gif)

## Getting started

You can download the binary executable from
Expand Down
8 changes: 4 additions & 4 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MPL-2.0"
[dependencies]
access-json = "0.1.0"
anyhow = "1.0.70"
async-process = "1.6.0"
async-process = "1.7.0"
async-trait = "0.1.68"
dirs = "5.0.0"
futures = "0.3.28"
Expand All @@ -17,9 +17,9 @@ log = "0.4.17"
once_cell = "1.17.1"
regex = "1.7.3"
rust-ini = "0.18.0"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
serde_yaml = "0.9.19"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
serde_yaml = "0.9.21"
tempfile = "3.5.0"
tokio = { version = "1.27.0", features = ["fs"] }
toml = "0.7.3"
Expand Down

0 comments on commit c9a687b

Please sign in to comment.