summaryrefslogtreecommitdiffstats
path: root/testing/Cargo.toml
blob: 2c1846b4014eb64db5514944c8e7beea11a3e104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "testing"
version = "0.3.1"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
workspace = ".."
edition = "2018"

[[bin]]
name = "emailparse"
path = "src/email_parse.rs"
[[bin]]
name = "linebreak"
path = "src/linebreak.rs"

[[bin]]
name = "imapconn"
path = "src/imap_conn.rs"

[dependencies]
melib = { path = "../melib", version = "*", features = ["debug-tracing"] }
text_processing = { path = "../text_processing", version = "*" }

[features]
default = []

# Print tracing logs as meli runs
debug-tracing = []