-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (55 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
62 lines (55 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "eml-codec"
version = "0.3.0"
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://git.deuxfleurs.fr/Deuxfleurs/eml-codec"
description = "Email enCOder DECoder in Rust. Support Internet Message Format and MIME (RFC 822, 5322, 2045, 2046, 2047, 2048, 2049, 6532)."
documentation = "https://docs.rs/eml-codec"
readme = "README.md"
exclude = [
"archive/",
"doc/",
"resources/",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
arbitrary = ["dep:arbitrary", "chrono/arbitrary", "chrono/std"]
tracing = ["dep:tracing"]
tracing-recover = ["tracing"]
tracing-unsupported = ["tracing"]
[lib]
name = "eml_codec"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "eml_parse"
path = "examples/parse.rs"
[[example]]
name = "trace"
path = "examples/trace.rs"
required-features = ["tracing"]
[dependencies]
nom = "7"
chrono = "0.4"
base64 = "0.21"
encoding_rs = "0.8"
bounded-static = { version = "0.8.0", features = ["derive"] }
rand = "0.9.2"
rand_chacha = "0.9.0"
arbitrary = { version = "1.4.2", optional = true, default-features = false, features = ["derive"] }
eml_codec_derives = { path = "eml_codec_derives" }
memchr = "2.8"
utf8_iter = "1.0.4"
tracing = { version = "0.1.44", optional = true }
charset = "0.1.5"
[dev-dependencies]
walkdir = "2"
pretty_assertions = "1.4.1"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
serde_json = "1.0.149"
serde = { version = "1.0.228", features = ["derive"] }
rayon = "1.11.0"
zip = "8.4.0"