16 lines
303 B
TOML
16 lines
303 B
TOML
[package]
|
|
name = "shell"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
nested = { path = "../nested" }
|
|
cgmath = "*"
|
|
termion = "*"
|
|
bincode = "*"
|
|
libc = "0.2.*"
|
|
tty = { git = "https://github.com/stemjail/tty-rs.git" }
|
|
|
|
[dependencies.async-std]
|
|
version = "1.9.0"
|
|
features = ["unstable", "attributes"]
|