-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
53 lines (46 loc) · 1.64 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "tcod"
description = "The Rust bindings for the Doryen library (a.k.a. libtcod)."
version = "0.15.0"
homepage = "https://github.com/tomassedovic/tcod-rs"
repository = "https://github.com/tomassedovic/tcod-rs"
documentation = "http://tomassedovic.github.io/tcod-rs/tcod/index.html"
readme = "README.md"
keywords = ["gamedev", "roguelike", "libtcod"]
license = "WTFPL"
authors = ["Tomas Sedovic <[email protected]>",
"Bastien Léonard <[email protected]>",
"Darren Kaste <[email protected]>",
"Edu Garcia <[email protected]>",
"Guillermo Galizzi <[email protected]>",
"Gustorn <[email protected]>",
"Jared McFarland <[email protected]>",
"Jonny Gilchrist (@jgilchrist)",
"LaylConway <[email protected]>",
"lucanLepus (@lucanLepus)",
"Moredread <[email protected]>",
"Nikita Pekin",
"Niko Lepka @ElectricCoffee <[email protected]>",
"Noah Ryan @nsmryan <[email protected]>",
"Paul Sanford <[email protected]>",
"Pranz <[email protected]>",
"Zoltán Nagy @abesto <[email protected]>"]
[badges]
maintenance = { status = "deprecated" }
[lib]
name = "tcod"
path = "src/lib.rs"
[dependencies]
bitflags = "0.1"
lazy_static = "1.4"
rustc-serialize = { optional = true, version = "0.3" }
serde = { optional = true, version = "1.0" }
serde_derive = { optional = true, version = "1.0" }
[features]
serialization = ["serde", "serde_derive"]
[dependencies.tcod-sys]
path = "tcod_sys"
version = "5.0.0"
[dev-dependencies]
rand = "0.3"
serde_json = "1.0"