mirror of
https://github.com/terhechte/postsack
synced 2024-11-16 06:13:09 +00:00
26 lines
794 B
TOML
26 lines
794 B
TOML
[package]
|
|
name = "ps-importer"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
eyre = "0.6.5"
|
|
thiserror = "1.0.29"
|
|
tracing = "0.1.29"
|
|
tracing-subscriber = "0.3.0"
|
|
regex = "1.5.3"
|
|
flate2 = "1.0.22"
|
|
once_cell = "1.8.0"
|
|
email-parser = { git = "https://github.com/terhechte/email-parser", features = ["sender", "to", "in-reply-to", "date", "subject", "mime", "allow-duplicate-headers", "compatibility-fixes"]}
|
|
rayon = "1.5.1"
|
|
chrono = "0.4.19"
|
|
emlx = { git = "https://github.com/terhechte/emlx", features = []}
|
|
walkdir = "2.3.2"
|
|
mbox-reader = "0.2.0"
|
|
rand = "0.8.4"
|
|
shellexpand = "2.1.0"
|
|
serde_json = "1.0.70"
|
|
serde = { version = "1.0.130", features = ["derive"]}
|
|
ps-core = { path = "../ps-core" } |