Check-in [562951709a]
Logged in as anonymous
Overview
Comment:one more output error
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | v0.3.1
Files: files | file ages | folders
SHA3-256: 562951709ac2a997a59e74ed51f4eb744b3b26387f4e19d6639e215b4fd54351
User & Date: arcade on 2024-12-11 06:25:40.113
Other Links: manifest | tags
Context
2024-12-27
15:29
bump, add option to filter header fields and also add "Date:" by default check-in: 28fde40f7a user: arcade tags: trunk, v0.3.2
2024-12-11
06:25
one more output error check-in: 562951709a user: arcade tags: trunk, v0.3.1
2024-12-10
17:29
bump crates, fix error sending check-in: 7f8a9994b3 user: arcade tags: trunk, v0.3.1
Changes
1
2
3

4
5
6
7
8
9
10
1
2

3
4
5
6
7
8
9
10


-
+







# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
version = 3

[[package]]
name = "addr2line"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
dependencies = [
1735
1736
1737
1738
1739
1740
1741
1742

1743
1744

1745
1746
1747
1748
1749
1750
1751

1752
1753

1754
1755
1756
1757
1758
1759
1760
1735
1736
1737
1738
1739
1740
1741

1742
1743

1744
1745
1746
1747
1748
1749
1750

1751
1752

1753
1754
1755
1756
1757
1758
1759
1760







-
+

-
+






-
+

-
+







name = "semver"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"

[[package]]
name = "serde"
version = "1.0.215"
version = "1.0.216"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
dependencies = [
 "serde_derive",
]

[[package]]
name = "serde_derive"
version = "1.0.215"
version = "1.0.216"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
dependencies = [
 "proc-macro2",
 "quote",
 "syn 2.0.90",
]

[[package]]
215
216
217
218
219
220
221
222

223
224
225
226
227
228
229
215
216
217
218
219
220
221

222
223
224
225
226
227
228
229







-
+







								match header.value() {
									mail_parser::HeaderValue::ContentType(contenttype) => {
										if let Some(fname) = contenttype.attribute("name") {
											filename = Some(fname.to_owned());
										}
									},
									_ => {
										self.debug("Attachment has bad ContentType header.").await?;
										self.debug("Attachment has bad ContentType header\\.").await?;
									},
								};
							};
						};
						let filename = if let Some(fname) = filename {
							fname
						} else {