mirror of
https://github.com/terhechte/postsack
synced 2024-11-04 12:00:18 +00:00
46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
name = "gmaildb"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# 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.28"
|
|
tracing-subscriber = "0.2.24"
|
|
rusqlite = {version = "0.25.3", features = ["chrono", "trace", "serde_json"]}
|
|
regex = "1.5.3"
|
|
flate2 = "1.0.22"
|
|
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"
|
|
lazy_static = "*"
|
|
serde_json = "*"
|
|
serde = { version = "*", features = ["derive"]}
|
|
crossbeam-channel = "0.5.1"
|
|
eframe = { version = "*", optional = true}
|
|
rsql_builder = "0.1.2"
|
|
treemap = "0.3.2"
|
|
num-format = "0.4.0"
|
|
strum = "0.21"
|
|
strum_macros = "0.21"
|
|
lru = { version = "0.7.0", optional = true }
|
|
emlx = { git = "https://github.com/terhechte/emlx", features = []}
|
|
walkdir = "*"
|
|
|
|
[features]
|
|
default = ["gui"]
|
|
# Trace all SQL Queries
|
|
trace-sql = []
|
|
gui = ["eframe", "lru"]
|
|
|
|
[profile.dev]
|
|
split-debuginfo = "unpacked"
|
|
|
|
#[profile.release]
|
|
#lto = "fat"
|
|
#codegen-units = 1
|
|
#panic = "abort"
|