19 lines
409 B
TOML
19 lines
409 B
TOML
[package]
|
|
name = "email"
|
|
version = "0.1.0"
|
|
authors = ["Bill Thiede <git@xinu.tv>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.69"
|
|
clap = { version = "4.1.8", features = ["derive"] }
|
|
mailparse = "0.14.0"
|
|
memmap = "0.7.0"
|
|
rayon = "1.6.1"
|
|
regex = "1.7.0"
|
|
sha1 = "0.10.5"
|
|
thiserror = "1.0.38"
|
|
walkdir = "2.3.2"
|