Author: Manos Pitsidianakis [manos@pitsidianak.is]
Hash: 757c068dd4d10efdd872e7179eb6034c63f418dc
Timestamp: Sun, 04 Feb 2024 11:39:27 +0000 (7 months ago)

+28 -37 +/-6 browse
Update stderrlog, tempfile dependencies
Update stderrlog, tempfile dependencies

- Update stderrlog dependency to 0.6.0
- Update tempfile dependency to 3.9

Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
1diff --git a/Cargo.lock b/Cargo.lock
2index 3b0abdc..462e598 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5 @@ -371,17 +371,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6 checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
7
8 [[package]]
9- name = "atty"
10- version = "0.2.14"
11- source = "registry+https://github.com/rust-lang/crates.io-index"
12- checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
13- dependencies = [
14- "hermit-abi 0.1.19",
15- "libc",
16- "winapi 0.3.9",
17- ]
18-
19- [[package]]
20 name = "autocfg"
21 version = "1.1.0"
22 source = "registry+https://github.com/rust-lang/crates.io-index"
23 @@ -1803,15 +1792,6 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
24
25 [[package]]
26 name = "hermit-abi"
27- version = "0.1.19"
28- source = "registry+https://github.com/rust-lang/crates.io-index"
29- checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
30- dependencies = [
31- "libc",
32- ]
33-
34- [[package]]
35- name = "hermit-abi"
36 version = "0.3.3"
37 source = "registry+https://github.com/rust-lang/crates.io-index"
38 checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
39 @@ -2016,7 +1996,7 @@ version = "1.0.11"
40 source = "registry+https://github.com/rust-lang/crates.io-index"
41 checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
42 dependencies = [
43- "hermit-abi 0.3.3",
44+ "hermit-abi",
45 "libc",
46 "windows-sys 0.48.0",
47 ]
48 @@ -2037,6 +2017,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
49 checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
50
51 [[package]]
52+ name = "is-terminal"
53+ version = "0.4.10"
54+ source = "registry+https://github.com/rust-lang/crates.io-index"
55+ checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
56+ dependencies = [
57+ "hermit-abi",
58+ "rustix 0.38.30",
59+ "windows-sys 0.52.0",
60+ ]
61+
62+ [[package]]
63 name = "iso8601"
64 version = "0.6.1"
65 source = "registry+https://github.com/rust-lang/crates.io-index"
66 @@ -2725,7 +2716,7 @@ version = "1.16.0"
67 source = "registry+https://github.com/rust-lang/crates.io-index"
68 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
69 dependencies = [
70- "hermit-abi 0.3.3",
71+ "hermit-abi",
72 "libc",
73 ]
74
75 @@ -3788,12 +3779,12 @@ dependencies = [
76
77 [[package]]
78 name = "stderrlog"
79- version = "0.5.4"
80+ version = "0.6.0"
81 source = "registry+https://github.com/rust-lang/crates.io-index"
82- checksum = "69a26bbf6de627d389164afa9783739b56746c6c72c4ed16539f4ff54170327b"
83+ checksum = "61c910772f992ab17d32d6760e167d2353f4130ed50e796752689556af07dc6b"
84 dependencies = [
85- "atty",
86 "chrono",
87+ "is-terminal",
88 "log",
89 "termcolor",
90 "thread_local",
91 diff --git a/cli/Cargo.toml b/cli/Cargo.toml
92index c87d354..00f6248 100644
93--- a/cli/Cargo.toml
94+++ b/cli/Cargo.toml
95 @@ -23,17 +23,17 @@ log = "0.4"
96 mailpot = { version = "^0.1", path = "../core" }
97 serde = { version = "^1", features = ["derive", ] }
98 serde_json = "^1"
99- stderrlog = "^0.5"
100+ stderrlog = { version = "^0.6" }
101 ureq = { version = "2.6", default-features = false }
102
103 [dev-dependencies]
104 assert_cmd = "2"
105 mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
106 predicates = "3"
107- tempfile = "3.3"
108+ tempfile = { version = "3.9" }
109
110 [build-dependencies]
111 clap = { version = "^4.2", default-features = false, features = ["std", "derive", "cargo", "unicode", "wrap_help", "help", "usage", "error-context", "suggestions"] }
112 clap_mangen = "0.2.10"
113 mailpot = { version = "^0.1", path = "../core" }
114- stderrlog = "^0.5"
115+ stderrlog = { version = "^0.6" }
116 diff --git a/core/Cargo.toml b/core/Cargo.toml
117index 1f633e8..7e995aa 100644
118--- a/core/Cargo.toml
119+++ b/core/Cargo.toml
120 @@ -31,5 +31,5 @@ xdg = "2.4.1"
121 [dev-dependencies]
122 mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
123 reqwest = { version = "0.11", default-features = false, features = ["json", "blocking"] }
124- stderrlog = "^0.5"
125- tempfile = "3.3"
126+ stderrlog = { version = "^0.6" }
127+ tempfile = { version = "3.9" }
128 diff --git a/mailpot-tests/Cargo.toml b/mailpot-tests/Cargo.toml
129index 5eec2d9..1dd5622 100644
130--- a/mailpot-tests/Cargo.toml
131+++ b/mailpot-tests/Cargo.toml
132 @@ -15,7 +15,7 @@ log = "0.4"
133 mailin-embedded = { version = "0.7", features = ["rtls"] }
134 mailpot = { version = "^0.1", path = "../core" }
135 predicates = "3"
136- stderrlog = "^0.5"
137- tempfile = "3.3"
138+ stderrlog = { version = "^0.6" }
139+ tempfile = { version = "3.9" }
140
141 [dev-dependencies]
142 diff --git a/rest-http/Cargo.toml b/rest-http/Cargo.toml
143index e79f615..b643f59 100644
144--- a/rest-http/Cargo.toml
145+++ b/rest-http/Cargo.toml
146 @@ -29,7 +29,7 @@ mailpot = { version = "^0.1", path = "../core" }
147 mailpot-web = { version = "^0.1", path = "../web" }
148 serde = { version = "1", features = ["derive"] }
149 serde_json = "1"
150- stderrlog = "^0.5"
151+ stderrlog = { version = "^0.6" }
152 thiserror = "1"
153 tokio = { version = "1", features = ["full"] }
154 tower-http = { version = "0.4", features = [
155 @@ -45,5 +45,5 @@ assert-json-diff = "2"
156 hyper = { version = "0.14" }
157 mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
158 reqwest = { version = "0.11", features = ["json"] }
159- tempfile = "3.3"
160+ tempfile = { version = "3.9" }
161 tower = { version = "^0.4" }
162 diff --git a/web/Cargo.toml b/web/Cargo.toml
163index 8cf5eec..db0ba70 100644
164--- a/web/Cargo.toml
165+++ b/web/Cargo.toml
166 @@ -40,8 +40,8 @@ rand = { version = "^0.8", features = ["min_const_gen"] }
167 serde = { version = "^1", features = ["derive", ] }
168 serde_json = "^1"
169 ssh-key = { version = "0.6.2", optional = true, features = ["crypto"] }
170- stderrlog = "^0.5"
171- tempfile = { version = "^3.5" }
172+ stderrlog = { version = "^0.6" }
173+ tempfile = { version = "3.9" }
174 tokio = { version = "1", features = ["full"] }
175 tower-http = { version = "^0.3" }
176 tower-service = { version = "^0.3" }
177 @@ -51,7 +51,7 @@ zstd = { version = "0.12", default-features = false }
178 hyper = { version = "0.14" }
179 mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
180 serde_urlencoded = { version = "^0.7" }
181- tempfile = { version = "3.3" }
182+ tempfile = { version = "3.9" }
183 tower = { version = "^0.4" }
184
185 [build-dependencies]