-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (49 loc) · 1.65 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
54
55
[package]
name = "rktrl"
version = "0.1.0"
authors = ["Zoltán Nagy <[email protected]>"]
edition = "2018"
[features]
default = []
wizard-mode = []
visualize-mapgen = []
[dependencies]
bracket-lib = { version = "0.8.1", features = ["serde"] }
auto_ops = "0.1.0"
newtype_derive = "0.1.6"
macro-attr = "0.2.0"
smallvec = "~1.6.0"
strum = "0.20.0"
strum_macros = "0.20.1"
bracket-terminal = "0.8.1"
console_error_panic_hook = "0.1.6"
flate2 = "1.0.19"
base64 = "0.13.0"
legion = { version = "0.3.1", default-features = false, features = ["codegen", "serialize"] }
# TODO swap to upstream once `wasm` branch is merged
legion_typeuuid = { git = "https://github.com/abesto/legion_typeuuid", branch = "wasm", default-features = false, features = ["type-uuid"] }
bincode = "1.3.1"
lazy_static = "1.4.0"
crossbeam-queue = "0.3.1"
petgraph = "0.5.1"
paste = "1.0.4"
# Transitive dependencies that are also used directly. Extra care needed to keep versions synced up.
rand = "0.7.3"
serde = "1.0.118"
type-uuid = "0.1.2"
itertools = "0.10.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3.46", features = ["Storage"] }
wasm-bindgen = "0.2.68"
legion = { version = "0.3.1", default-features = false, features = ["codegen", "serialize", "wasm-bindgen"] }
[patch.crates-io]
# https://github.com/thebracket/bracket-lib/pull/130
# Also for various unreleased off-by-one fixes around coordinate handling
bracket-lib = { git = "https://github.com/abesto/bracket-lib", branch = "master" }
#bracket-lib = { path = "C:\\Users\\abesto\\Documents\\GitHub\\bracket-lib" }
[[bin]]
name = "rktrl"
path = "src/main.rs"
[lib]
name = "rktrl_lib"
crate-type = ["cdylib", "rlib"]