This commit is contained in:
John Smith 2022-06-26 20:30:43 -04:00
parent 0c3461b7f8
commit 2799e0464a
2 changed files with 3 additions and 2 deletions

1
Cargo.lock generated
View File

@ -1210,6 +1210,7 @@ name = "cursive"
version = "0.18.0" version = "0.18.0"
dependencies = [ dependencies = [
"ahash", "ahash",
"async-std",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"crossbeam-channel", "crossbeam-channel",
"crossterm", "crossterm",

View File

@ -11,10 +11,10 @@ name = "veilid-cli"
path = "src/main.rs" path = "src/main.rs"
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
cursive = { path = "../external/cursive/cursive", default-features = false, features = ["ncurses-backend", "toml"]} cursive = { path = "../external/cursive/cursive", default-features = false, features = ["ncurses-backend", "toml", "rt-async-std"]}
[target.'cfg(not(unix))'.dependencies] [target.'cfg(not(unix))'.dependencies]
cursive = { path = "../external/cursive/cursive", default-features = false, features = ["crossterm-backend", "toml"]} cursive = { path = "../external/cursive/cursive", default-features = false, features = ["crossterm-backend", "toml", "rt-async-std"]}
[dependencies] [dependencies]
async-std = { version = "^1.9", features = ["unstable", "attributes"] } async-std = { version = "^1.9", features = ["unstable", "attributes"] }