led/Cargo.toml
Nathan Vegdahl dd40937cfa Capture stderr output so that it can be printed after exit.
Otherwise is was just getting swallowed in the alternate terminal
buffer.  This was especially annoying with panics, since their
messages and backtraces got completely swallowed.
2020-02-02 17:20:00 +09:00

30 lines
508 B
TOML

[workspace]
members = [
"sub_crates/backend",
]
[package]
name = "Led"
version = "0.0.2"
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
license = "MIT"
edition = "2018"
[[bin]]
name = "led"
path = "src/main.rs"
[dependencies]
ropey = "1"
# ropey = { git = "https://github.com/cessen/ropey", branch = "master" }
unicode-segmentation = "1"
unicode-width = "0.1"
clap = "2"
smallvec = "1"
crossterm = "0.14"
gag = "0.1.10"
# Local crate dependencies
[dependencies.backend]
path = "sub_crates/backend"