eml-codec/Cargo.toml

26 lines
399 B
TOML
Raw Normal View History

2023-06-08 12:58:20 +00:00
[package]
2023-07-23 15:14:16 +00:00
name = "eml-codec"
2023-06-08 12:58:20 +00:00
version = "0.1.0"
edition = "2021"
2023-06-08 20:02:13 +00:00
license = "GPL-3.0-or-later"
2023-06-08 12:58:20 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-06-08 19:55:07 +00:00
[lib]
2023-07-23 15:14:16 +00:00
name = "eml_codec"
2023-06-08 19:55:07 +00:00
path = "src/lib.rs"
[[bin]]
2023-07-23 15:14:16 +00:00
name = "eml_parse"
2023-06-08 19:55:07 +00:00
path = "src/parse.rs"
2023-06-08 12:58:20 +00:00
[dependencies]
nom = "7"
2023-06-12 09:54:15 +00:00
chrono = "0.4"
2023-07-13 07:56:24 +00:00
base64 = "0.21"
2023-07-23 15:14:16 +00:00
encoding_rs = "0.8"
2023-06-18 19:17:27 +00:00
[dev-dependencies]
walkdir = "2"