led/Cargo.toml
Nathan Vegdahl f94fc0408f Updated most dependencies to latest version.
Holding off on smallvec since there's an API break.
2020-01-23 18:57:34 +09:00

31 lines
523 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"
serde = "1"
serde_derive = "1"
docopt = "1"
smallvec = "0.6"
termion = "1"
# Local crate dependencies
[dependencies.backend]
path = "sub_crates/backend"