mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-17 03:26:20 +00:00
6079909f9c
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.
28 lines
501 B
TOML
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 = []
|