Skip to content

Commit

Permalink
fix: Address issue Breaks windows build #50
Browse files Browse the repository at this point in the history
This reverts commits 51f74a3 and 1e81da3
  • Loading branch information
EricShimizuKarbstein committed Mar 11, 2022
1 parent b2e007f commit a6c01ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
3 changes: 2 additions & 1 deletion doc/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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):
Expand Down

0 comments on commit a6c01ad

Please sign in to comment.