meli/testing/Cargo.toml
Manos Pitsidianakis 6079909f9c
imap: add managesieve connection
So far only the connection is implemented, and using the
testing/manage_sieve binary you can get a shell to a managesieve server.

The managesieve interface will be used in the UI from a plugin, but the
plugin's interface isn't implemented yet.
2020-02-28 15:47:07 +02:00

28 lines
501 B
TOML

[package]
name = "testing"
version = "0.4.1"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
workspace = ".."
edition = "2018"
[[bin]]
name = "emailparse"
path = "src/email_parse.rs"
[[bin]]
name = "imapconn"
path = "src/imap_conn.rs"
[[bin]]
name = "managesieve_conn"
path = "src/managesieve.rs"
[dependencies]
melib = { path = "../melib", version = "*", features = ["debug-tracing", "unicode_algorithms"] }
[features]
default = []
# Print tracing logs as meli runs
debug-tracing = []