Skip to content

Commit

Permalink
Merge pull request #65 from jaysonsantos/renovate/all-minor-patch
Browse files Browse the repository at this point in the history
fix(deps): update all non-major dependencies
  • Loading branch information
jaysonsantos authored Feb 15, 2024
2 parents b62fa79 + ac85f6a commit 96e27df
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 60 deletions.
89 changes: 48 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ dotenv = "0.15.0"
fuzzy-matcher = "0.3.7"
mambembe-keyring = { path = "../keyring/" }
mambembe-lib = { path = "../lib" }
serde = "1.0.193"
serde_json = "1.0.108"
serde = "1.0.196"
serde_json = "1.0.113"
structopt = "0.3.26"
tokio = { version = "1.35.1", features = ["full"] }
tokio = { version = "1.36.0", features = ["full"] }
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
Expand Down
8 changes: 4 additions & 4 deletions keyring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
directories = { version = "5.0.1", optional = true }
keyring = { version = "2.2.0", optional = true }
keyring = { version = "2.3.2", optional = true }
lazy_static = "1.4.0"
mambembe-lib = { path = "../lib" }
serde = "1.0.193"
serde_json = "1.0.108"
thiserror = "1.0.52"
serde = "1.0.196"
serde_json = "1.0.113"
thiserror = "1.0.57"
tracing = "0.1.40"

[features]
Expand Down
16 changes: 8 additions & 8 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes = "0.8.3"
async-trait = "0.1.75"
aes = "0.8.4"
async-trait = "0.1.77"
cbc = { version = "0.1.2", features = ["block-padding", "alloc"] }
data-encoding = "2.5.0"
hex = "0.4.3"
hmac = "0.12.1"
itertools = "0.12.0"
itertools = "0.12.1"
json = "0.12.4"
lazy_static = "1.4.0"
md5 = "0.7.0"
pbkdf2 = { version = "0.12.2", default-features = false }
rand = "0.8.5"
reqwest = { version = "0.11.23", default-features = false, features = ["json", "gzip", "rustls-tls"] }
reqwest = { version = "0.11.24", default-features = false, features = ["json", "gzip", "rustls-tls"] }
rsa = "0.9.6"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
sha-1 = "0.10.1"
sha2 = "0.10.8"
slauth = { version = "0.5.0", default-features = false }
thiserror = "1.0.52"
thiserror = "1.0.57"
tracing = "0.1.40"
url = { version = "2.5.0", features = ["serde"] }

[dev-dependencies]
dotenv = "0.15.0"
mambembe-stub-server = { path = "../stub_server" }
tokio = { version = "1.35.1", features = ["rt-multi-thread"] }
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }

[build-dependencies]
dotenv = "0.15.0"
Expand Down
8 changes: 4 additions & 4 deletions stub_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ edition = "2018"
color-eyre = { version = "0.6.2", git = "https://github.com/jaysonsantos/color-eyre" }
lazy_static = "1.4.0"
rand = "0.8.5"
reqwest = { version = "0.11.23", default-features = false }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.35.1", features = ["full"] }
reqwest = { version = "0.11.24", default-features = false }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
tokio = { version = "1.36.0", features = ["full"] }
tracing = "0.1.40"

0 comments on commit 96e27df

Please sign in to comment.