Skip to content

Commit

Permalink
Update stderrlog, tempfile dependencies
Browse files Browse the repository at this point in the history
- Update stderrlog dependency to 0.6.0
- Update tempfile dependency to 3.9

Signed-off-by: Manos Pitsidianakis <[email protected]>
  • Loading branch information
epilys committed Feb 4, 2024
1 parent acb26c5 commit 757c068
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 37 deletions.
41 changes: 16 additions & 25 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 @@ -23,17 +23,17 @@ log = "0.4"
mailpot = { version = "^0.1", path = "../core" }
serde = { version = "^1", features = ["derive", ] }
serde_json = "^1"
stderrlog = "^0.5"
stderrlog = { version = "^0.6" }
ureq = { version = "2.6", default-features = false }

[dev-dependencies]
assert_cmd = "2"
mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
predicates = "3"
tempfile = "3.3"
tempfile = { version = "3.9" }

[build-dependencies]
clap = { version = "^4.2", default-features = false, features = ["std", "derive", "cargo", "unicode", "wrap_help", "help", "usage", "error-context", "suggestions"] }
clap_mangen = "0.2.10"
mailpot = { version = "^0.1", path = "../core" }
stderrlog = "^0.5"
stderrlog = { version = "^0.6" }
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ xdg = "2.4.1"
[dev-dependencies]
mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
reqwest = { version = "0.11", default-features = false, features = ["json", "blocking"] }
stderrlog = "^0.5"
tempfile = "3.3"
stderrlog = { version = "^0.6" }
tempfile = { version = "3.9" }
4 changes: 2 additions & 2 deletions mailpot-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log = "0.4"
mailin-embedded = { version = "0.7", features = ["rtls"] }
mailpot = { version = "^0.1", path = "../core" }
predicates = "3"
stderrlog = "^0.5"
tempfile = "3.3"
stderrlog = { version = "^0.6" }
tempfile = { version = "3.9" }

[dev-dependencies]
4 changes: 2 additions & 2 deletions rest-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mailpot = { version = "^0.1", path = "../core" }
mailpot-web = { version = "^0.1", path = "../web" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
stderrlog = "^0.5"
stderrlog = { version = "^0.6" }
thiserror = "1"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.4", features = [
Expand All @@ -45,5 +45,5 @@ assert-json-diff = "2"
hyper = { version = "0.14" }
mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
reqwest = { version = "0.11", features = ["json"] }
tempfile = "3.3"
tempfile = { version = "3.9" }
tower = { version = "^0.4" }
6 changes: 3 additions & 3 deletions web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ rand = { version = "^0.8", features = ["min_const_gen"] }
serde = { version = "^1", features = ["derive", ] }
serde_json = "^1"
ssh-key = { version = "0.6.2", optional = true, features = ["crypto"] }
stderrlog = "^0.5"
tempfile = { version = "^3.5" }
stderrlog = { version = "^0.6" }
tempfile = { version = "3.9" }
tokio = { version = "1", features = ["full"] }
tower-http = { version = "^0.3" }
tower-service = { version = "^0.3" }
Expand All @@ -51,7 +51,7 @@ zstd = { version = "0.12", default-features = false }
hyper = { version = "0.14" }
mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
serde_urlencoded = { version = "^0.7" }
tempfile = { version = "3.3" }
tempfile = { version = "3.9" }
tower = { version = "^0.4" }

[build-dependencies]
Expand Down

0 comments on commit 757c068

Please sign in to comment.