mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
fix cursive for macos veilid-cli
This commit is contained in:
parent
9db6f494c2
commit
a2839042d6
13
Cargo.lock
generated
13
Cargo.lock
generated
@ -1428,6 +1428,8 @@ dependencies = [
|
|||||||
"lazy_static",
|
"lazy_static",
|
||||||
"libc",
|
"libc",
|
||||||
"log",
|
"log",
|
||||||
|
"maplit",
|
||||||
|
"ncurses",
|
||||||
"signal-hook",
|
"signal-hook",
|
||||||
"tokio 1.28.2",
|
"tokio 1.28.2",
|
||||||
"unicode-segmentation",
|
"unicode-segmentation",
|
||||||
@ -3229,6 +3231,17 @@ dependencies = [
|
|||||||
"socket2 0.4.9",
|
"socket2 0.4.9",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ncurses"
|
||||||
|
version = "5.101.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5e2c5d34d72657dc4b638a1c25d40aae81e4f1c699062f72f467237920752032"
|
||||||
|
dependencies = [
|
||||||
|
"cc",
|
||||||
|
"libc",
|
||||||
|
"pkg-config",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ndk"
|
name = "ndk"
|
||||||
version = "0.7.0"
|
version = "0.7.0"
|
||||||
|
2
external/cursive
vendored
2
external/cursive
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 31ea07fde2191be2ff8eb7c46c6fc2a1bfd8e311
|
Subproject commit 250d35f37f526221539c8d59d7a2056803bf0010
|
@ -16,7 +16,6 @@ rt-async-std = [ "async-std", "veilid-core/rt-async-std", "cursive/rt-async-std"
|
|||||||
rt-tokio = [ "tokio", "tokio-util", "veilid-core/rt-tokio", "cursive/rt-tokio" ]
|
rt-tokio = [ "tokio", "tokio-util", "veilid-core/rt-tokio", "cursive/rt-tokio" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cursive = { path = "../external/cursive/cursive", default-features = false, features = [ "crossterm", "toml", "ansi" ]}
|
|
||||||
async-std = { version = "^1.9", features = ["unstable", "attributes"], optional = true }
|
async-std = { version = "^1.9", features = ["unstable", "attributes"], optional = true }
|
||||||
tokio = { version = "^1", features = ["full"], optional = true }
|
tokio = { version = "^1", features = ["full"], optional = true }
|
||||||
tokio-util = { version = "^0", features = ["compat"], optional = true}
|
tokio-util = { version = "^0", features = ["compat"], optional = true}
|
||||||
@ -46,6 +45,12 @@ hex = "^0"
|
|||||||
veilid-core = { path = "../veilid-core" }
|
veilid-core = { path = "../veilid-core" }
|
||||||
json = "^0"
|
json = "^0"
|
||||||
|
|
||||||
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
||||||
|
cursive = { path = "../external/cursive/cursive", default-features = false, features = [ "crossterm", "toml", "ansi" ]}
|
||||||
|
|
||||||
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
|
cursive = { path = "../external/cursive/cursive", default-features = false, features = [ "ncurses-backend", "toml", "ansi" ]}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serial_test = "^0"
|
serial_test = "^0"
|
||||||
|
|
||||||
|
@ -709,7 +709,10 @@ impl UI {
|
|||||||
|
|
||||||
// Instantiate the cursive runnable
|
// Instantiate the cursive runnable
|
||||||
let runnable = CursiveRunnable::new(
|
let runnable = CursiveRunnable::new(
|
||||||
|| -> Result<Box<dyn cursive_buffered_backend::Backend>, Box<DumbError>> {
|
|| -> Result<Box<dyn cursive::backend::Backend>, Box<DumbError>> {
|
||||||
|
#[cfg(target_os = "macos")]
|
||||||
|
let backend = cursive::backends::curses::n::Backend::init().unwrap();
|
||||||
|
#[cfg(not(target_os = "macos"))]
|
||||||
let backend = cursive::backends::crossterm::Backend::init().unwrap();
|
let backend = cursive::backends::crossterm::Backend::init().unwrap();
|
||||||
let buffered_backend = cursive_buffered_backend::BufferedBackend::new(backend);
|
let buffered_backend = cursive_buffered_backend::BufferedBackend::new(backend);
|
||||||
Ok(Box::new(buffered_backend))
|
Ok(Box::new(buffered_backend))
|
||||||
|
Loading…
Reference in New Issue
Block a user