forked from dpc/rhex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 864 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "rhex"
version = "0.0.3"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
description = "ASCII terminal hexagonal map roguelike written in Rust"
keywords = ["roguelike", "game", "hex", "hexagonal"]
license = "MPL-2.0"
documentation = "https://dpc.github.io/rhex/"
homepage = "https://github.com/dpc/rhex"
repository = "https://github.com/dpc/rhex"
readme = "README.md"
[profile.dev]
opt-level = 1
debug = true
lto = false
debug-assertions = true
codegen-units = 2
[features]
default=[]
[dependencies]
num = "0.1.30"
rand = "0.3.13"
chrono = "0.2.17"
hex2d = "0.1.0"
hex2d-dpcext = "0.0.9"
log = "0.3.5"
fern = "0.3.5"
schedule_recv = "0.0.1"
#ncurses = "5.80.0"
ncurses = { git="https://github.com/dpc/ncurses-rs" }
dpc-simplemap = { git="https://github.com/dpc/simplemap-rs", branch="no_hash_state" }
clippy = {version = "*", optional = true}