-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (35 loc) · 1.18 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
[package]
name = "nightrunner_lib"
version = "0.3.1"
edition = "2021"
resolver="2"
authors = ["Aimeri Baddouh <[email protected]>"]
description = "A parser library for making text adventure games"
license = "Apache-2.0"
repository = "https://github.com/aimerib/nightrunner-lib"
documentation = "https://docs.rs/nightrunner_lib"
categories = ["parsing"]
keywords = ["engine", "parsing", "wasm", "game"]
readme = "README.md"
[lib]
crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1"
wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }
serde-wasm-bindgen = "0.6.5"
rand = "0.8.5"
getrandom = { version = "0.2.12", features = ["js"] }
serde_yaml = "0.9.33"
console_error_panic_hook = "0.1.7"
[dev-dependencies]
pretty_assertions = "1.4.0"
wasm-bindgen-test = "0.3.42"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
cursive = { version = "0.20.0", default-features = false, features = ["crossterm-backend"] }
cursive-aligned-view = "0.6.0"
[[example]]
name = "cursive_example"
crate-type = ["bin"]