aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2021-10-27 20:07:29 +0300
committereug-vs <eugene@eug-vs.xyz>2021-10-27 20:07:29 +0300
commitd6dfb23733f4f767b459358a42dad55a85ffdce2 (patch)
tree3eaf97c399c61cffc4b50e15af87193e84fc3823
parent4150e01639a96c233822a46aa23875faa7ecfd47 (diff)
downloadpistol-d6dfb23733f4f767b459358a42dad55a85ffdce2.tar.gz
chore: install ncurses
-rw-r--r--Cargo.lock30
-rw-r--r--Cargo.toml1
2 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a5cf5de..ead8245 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -16,6 +16,7 @@ name = "ascii-renderer-rust"
version = "0.1.0"
dependencies = [
"cgmath",
+ "ncurses",
]
[[package]]
@@ -25,6 +26,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
+name = "cc"
+version = "1.0.71"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd"
+
+[[package]]
name = "cgmath"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -35,6 +42,23 @@ dependencies = [
]
[[package]]
+name = "libc"
+version = "0.2.105"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013"
+
+[[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]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -42,3 +66,9 @@ checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
+
+[[package]]
+name = "pkg-config"
+version = "0.3.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f"
diff --git a/Cargo.toml b/Cargo.toml
index 2b152bb..b7d7394 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,3 +7,4 @@ edition = "2018"
[dependencies]
cgmath = "0.18.0"
+ncurses = "5.101.0"