-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (30 loc) · 946 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
[package]
name = "wasmcraft"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
servertests = []
gui = ["datapack_vm/gui"]
[[bin]]
name = "wasmcraft"
path = "src/bin/main.rs"
[lib]
name = "wasmcraft"
path = "src/lib.rs"
[dependencies]
wasmparser = "*"
datapack_vm = { git = "https://github.com/SuperTails/datapackvm.git", branch = "interning" }
#datapack_vm = { path = "../../datapackvm" }
datapack_common = { git = "https://github.com/SuperTails/datapack_common.git" }
#datapack_common = { path = "../../datapack_common" }
command_parser = { git = "https://github.com/Inky-developer/command-parser" }
hashers = "*"
clap = { version = "3.2.11", features = ["derive"] }
bit-set = "0.5.3"
disjoint-sets = "0.4.2"
union-find-rs = "0.2.1"
[dev-dependencies]
rcon = { version = "0", features = ["rt-async-std"] }
async-std = "*"
async-recursion = "1.0"