mirror of
https://git.meli.delivery/meli/meli
synced 2024-10-30 21:20:34 +00:00
a73885acb1
- Add character attribute support - Add cursor key mode support - Fix buggy set fg / bg sequences And added a bin under tools to test arbitrary apps using the embedded terminal: cargo run -p tools --bin embed -- "htop" 2> .htop.debug.log
42 lines
884 B
TOML
42 lines
884 B
TOML
[package]
|
|
name = "tools"
|
|
version = "0.4.1"
|
|
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
|
|
workspace = ".."
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "emailparse"
|
|
path = "src/email_parse.rs"
|
|
|
|
[[bin]]
|
|
name = "mboxparse"
|
|
path = "src/mboxparse.rs"
|
|
|
|
[[bin]]
|
|
name = "imapshell"
|
|
path = "src/imapshell.rs"
|
|
|
|
[[bin]]
|
|
name = "smtp_conn"
|
|
path = "src/smtp_conn.rs"
|
|
|
|
[[bin]]
|
|
name = "embed"
|
|
path = "src/embed.rs"
|
|
|
|
|
|
[dependencies]
|
|
melib = { path = "../melib", version = "*", features = ["debug-tracing", "unicode_algorithms"] }
|
|
meli = { path = "..", version = "*" }
|
|
crossbeam = { version = "^0.8" }
|
|
signal-hook = { version = "^0.3", default-features = false }
|
|
signal-hook-registry = { version = "1.2.0", default-features = false }
|
|
nix = { version = "^0.24", default-features = false }
|
|
|
|
[features]
|
|
default = ["debug-tracing"]
|
|
|
|
# Print tracing logs as meli runs
|
|
debug-tracing = ["meli/debug-tracing"]
|