mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
async
This commit is contained in:
parent
0c3461b7f8
commit
2799e0464a
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -1210,6 +1210,7 @@ name = "cursive"
|
||||
version = "0.18.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"async-std",
|
||||
"cfg-if 1.0.0",
|
||||
"crossbeam-channel",
|
||||
"crossterm",
|
||||
|
@ -11,10 +11,10 @@ name = "veilid-cli"
|
||||
path = "src/main.rs"
|
||||
|
||||
[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]
|
||||
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]
|
||||
async-std = { version = "^1.9", features = ["unstable", "attributes"] }
|
||||
|
Loading…
Reference in New Issue
Block a user