led/Cargo.toml
Nathan Vegdahl 9ace1ecb68 Moved from termion to crossterm for terminal handling.
This should (hopefully) make led work on Windows now.  Although
I don't have a Windows box to test on.

This also fixes a bug where control codes were ocassionally split
on input, resulting in e.g. a pg-down resulting in control
characters inserted into the buffer.
2020-01-25 04:07:56 +09:00

29 lines
493 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"
# Local crate dependencies
[dependencies.backend]
path = "sub_crates/backend"