led/Cargo.toml
Nathan Vegdahl a843aee904 Split text_encoding off into its own repo.
It's more generally useful, and I was working with it as its own
crate anyway.
2018-08-23 13:33:14 -07:00

30 lines
520 B
TOML

[workspace]
members = [
"sub_crates/backend",
]
[package]
name = "Led"
version = "0.0.2"
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
license = "MIT"
[[bin]]
name = "led"
path = "src/main.rs"
[dependencies]
# ropey = "0.8"
ropey = { git = "https://github.com/cessen/ropey", branch = "master" }
unicode-segmentation = "1.2.1"
unicode-width = "0.1"
serde = "1.*"
serde_derive = "1.*"
docopt = "0.8"
smallvec = "0.6"
termion = "1.5"
# Local crate dependencies
[dependencies.backend]
path = "sub_crates/backend"