mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-01 15:40:27 +00:00
5a53020f3d
The feature needs to be defined in all manifests in order to be enabled in all crates.
28 lines
534 B
TOML
28 lines
534 B
TOML
[package]
|
|
name = "testing"
|
|
version = "0.3.0"
|
|
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 = []
|