mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-01 15:40:27 +00:00
6a8f869e5b
Add --manual, --conf-manual command line arguments that display manpages through a pager. If no pager is found, this currently fails. It should print the manuals to stdout instead. The manuals are read from src/manuals and are generated with mandoc whenever changes to the manpage sources meli.1 and meli.conf.5 are made.
33 lines
668 B
TOML
33 lines
668 B
TOML
[package]
|
|
name = "meli"
|
|
version = "0.3.2"
|
|
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[[bin]]
|
|
name = "meli"
|
|
path = "src/bin.rs"
|
|
|
|
[dependencies]
|
|
xdg = "2.1.0"
|
|
crossbeam = "0.7.2"
|
|
signal-hook = "0.1.10"
|
|
nix = "*"
|
|
melib = { path = "melib", version = "*" }
|
|
ui = { path = "ui", version = "*" }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
debug = false
|
|
|
|
[workspace]
|
|
members = ["melib", "ui", "debug_printer", "testing", "text_processing"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Print tracing logs as meli runs in stderr
|
|
# enable for debug tracing logs: build with --features=debug-tracing
|
|
debug-tracing = ["melib/debug-tracing", "ui/debug-tracing"]
|