mirror of
https://github.com/terhechte/postsack
synced 2024-11-12 01:10:48 +00:00
9a35b99971
* Moved deps into ps-core and `pub use` exported them so they're only in one place * Updated Version Numbers
19 lines
661 B
TOML
19 lines
661 B
TOML
[package]
|
|
name = "ps-importer"
|
|
version = "1.0.0"
|
|
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"
|
|
serde = { version = "1.0.131", features = ["derive"]}
|
|
ps-core = { path = "../ps-core" } |