2021-12-15 21:45:49 +00:00
|
|
|
[package]
|
|
|
|
name = "ps-importer"
|
2021-12-18 21:58:43 +00:00
|
|
|
version = "1.0.0"
|
2021-12-15 21:45:49 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
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"
|
|
|
|
emlx = { git = "https://github.com/terhechte/emlx", features = []}
|
|
|
|
walkdir = "2.3.2"
|
|
|
|
mbox-reader = "0.2.0"
|
|
|
|
shellexpand = "2.1.0"
|
|
|
|
serde_json = "1.0.70"
|
2021-12-18 21:58:43 +00:00
|
|
|
serde = { version = "1.0.131", features = ["derive"]}
|
2021-12-15 21:45:49 +00:00
|
|
|
ps-core = { path = "../ps-core" }
|