summaryrefslogtreecommitdiffstats
path: root/testing/Cargo.toml
blob: 37c12ee91a522f6f52ddcd633faddb7287a3af2d (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.2"
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 = []