-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 997 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
36
37
38
39
40
41
42
43
44
[package]
name = "puzzlescript"
version = "0.1.0"
authors = ["Philip Schatz <[email protected]>"]
edition = "2018"
description = "PuzzleScript interpreter and games that run on the commadline"
# documentation = "https://"
# homepage = "https://"
repository = "https://github.com/philschatz/puzzlescript-rust"
readme = "README.md"
keywords = [ "puzzle", "game", "puzzlescript", "commandline", "easter-egg" ]
categories = [ "game-engines", "games", "command-line-utilities" ]
license = "MIT"
exclude = [
".*",
"*.bash",
"stats.txt",
]
[profile.release]
debug = true
[dependencies]
clap = "2.33.0"
env_logger = "0.6.2"
fnv = "1.0.6"
hex = "0.3.2"
log = "0.4.6"
rand = "0.7.0"
rand_core = "0.5.0"
rand_xorshift = "0.2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
termion = "1.5.3"
tui = "0.6.1"
# wasm-bindgen = "0.2"
#
# [dependencies.nom]
# version = "^5"
# features = ["regexp"]
#
# [dev-dependencies]
# wasm-bindgen-test = "0.2"