diff --git a/Cargo.toml b/Cargo.toml index eca2bb37..030b3093 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,9 +43,9 @@ epic_servers = { path = "./servers", version = "3.0.0" } epic_util = { path = "./util", version = "3.0.0" } epic_chain = { path = "./chain", version = "3.0.0" } -openssl-sys = { version = "0.9.70", features = ["vendored"] } -cursive = { version = "0.15", default-features = false, features = ["termion-backend"] } +cursive = { version = "0.15", default-features = false, features = ["pancurses-backend"] } + [target.'cfg(windows)'.dependencies.pancurses] version = "0.16.1" features = ["win32"] diff --git a/doc/build.md b/doc/build.md index f81992bc..697b6a28 100644 --- a/doc/build.md +++ b/doc/build.md @@ -4,6 +4,7 @@ - rust 1.44 - clang +- ncurses and libs (ncurses, ncursesw5) - zlib libs (zlib1g-dev or zlib-devel) - pkg-config - linux-headers (reported needed on Alpine linux) @@ -13,7 +14,7 @@ For Debian-based distributions (Debian, Ubuntu, Mint, etc), all in one line (except Rust): ```sh -sudo apt install build-essential cmake git libgit2-dev clang zlib1g-dev pkg-config llvm +sudo apt install build-essential cmake git libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev pkg-config llvm ``` For Mac using [brew](https://brew.sh):