postsack/Cargo.toml

71 lines
2.0 KiB
TOML
Raw Normal View History

2021-09-29 13:29:21 +00:00
[package]
2021-11-14 11:15:33 +00:00
name = "postsack"
version = "0.2.0"
2021-09-29 13:29:21 +00:00
edition = "2018"
2021-11-14 11:15:33 +00:00
description = "Provides a high level visual overview of swaths of email"
2021-09-29 13:29:21 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.bundle.bin.gui]
2021-11-14 11:15:33 +00:00
name = "Postsack"
2021-12-03 13:14:08 +00:00
identifier = "com.stylemac.postsack"
#icon = ["128x128@2x.png"]
version = "1.0.0"
#resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
2021-11-14 11:15:33 +00:00
copyright = "Copyright (c) Benedikt Terhechte (2021). All rights reserved."
category = "Developer Tool"
2021-11-14 11:15:33 +00:00
short_description = "Provides a high level visual overview of swaths of email"
long_description = """
2021-11-14 11:15:33 +00:00
Provides a high level visual overview of swaths of email
"""
2021-09-29 13:29:21 +00:00
[dependencies]
eyre = "0.6.5"
thiserror = "1.0.29"
tracing = "0.1.29"
tracing-subscriber = "0.3.0"
rusqlite = {version = "0.26.1", features = ["chrono", "trace", "serde_json", "bundled"]}
2021-09-29 13:29:21 +00:00
regex = "1.5.3"
flate2 = "1.0.22"
2021-11-14 23:41:28 +00:00
once_cell = "1.8.0"
2021-10-10 06:03:41 +00:00
email-parser = { git = "https://github.com/terhechte/email-parser", features = ["sender", "to", "in-reply-to", "date", "subject", "mime", "allow-duplicate-headers", "compatibility-fixes"]}
2021-09-29 13:29:21 +00:00
rayon = "1.5.1"
chrono = "0.4.19"
2021-11-17 10:59:12 +00:00
serde_json = "1.0.70"
serde = { version = "1.0.130", features = ["derive"]}
crossbeam-channel = "0.5.1"
2021-11-17 10:59:12 +00:00
eframe = { version = "0.15.0", optional = true}
2021-09-30 16:41:02 +00:00
rsql_builder = "0.1.2"
treemap = "0.3.2"
2021-10-02 19:47:35 +00:00
num-format = "0.4.0"
2021-11-17 10:59:12 +00:00
strum = "0.22.0"
strum_macros = "0.22.0"
lru = { version = "0.7.0", optional = true }
2021-10-10 06:03:41 +00:00
emlx = { git = "https://github.com/terhechte/emlx", features = []}
2021-11-17 10:59:12 +00:00
walkdir = "2.3.2"
2021-10-14 17:03:31 +00:00
mbox-reader = "0.2.0"
tinyfiledialogs = "3.0"
2021-10-18 12:16:24 +00:00
rand = "0.8.4"
2021-11-17 10:59:12 +00:00
shellexpand = "2.1.0"
image = { version = "0.23", default-features = false, features = ["png"] }
2021-09-30 12:50:48 +00:00
[features]
2021-09-30 16:41:02 +00:00
default = ["gui"]
2021-09-30 12:50:48 +00:00
# Trace all SQL Queries
trace-sql = []
gui = ["eframe", "lru"]
2021-09-30 16:41:02 +00:00
[target."cfg(target_os = \"macos\")".dependencies.cocoa]
version = "0.24"
[target."cfg(target_os = \"macos\")".dependencies.objc]
version = "0.2.7"
2021-09-30 16:41:02 +00:00
[profile.dev]
split-debuginfo = "unpacked"
2021-09-30 12:50:48 +00:00
2021-09-30 10:51:36 +00:00
#[profile.release]
#lto = "fat"
#codegen-units = 1
#panic = "abort"