-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (22 loc) · 929 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
[package]
name = "text-rts"
description = "A text-based sci-fi themed real-time strategy game"
version = "0.1.0"
authors = ["Maxwell Anderson <[email protected]>"]
edition = "2018"
keywords = ["text", "rts", "strategy", "game", "text-based"]
categories = ["games"]
license = "MIT"
homepage = "https://github.com/Maxgy/text-rts"
repository = "https://github.com/Maxgy/text-rts"
[features]
default = ["bracket-lib/opengl", "legion/default"]
web = ["bracket-lib/opengl"]
console = ["bracket-lib/crossterm", "legion/default"]
[dependencies]
legion = { version = "0.3", default-features = false }
bracket-lib = { git = "https://github.com/thebracket/bracket-lib", version = "0.8", default-features = false, features = ["threaded"] }
rand = { version = "0.7", features = ["wasm-bindgen"] }
wasm-bindgen = { version = "0.2", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
winit = "0.23"