-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·41 lines (33 loc) · 831 Bytes
/
Cargo.toml
File metadata and controls
executable file
·41 lines (33 loc) · 831 Bytes
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
[package]
name = "playform"
version = "0.0.0"
authors = [
"Zeke Foppa <benjamin.foppa@gmail.com>",
"Clark Gaebel <cg.wowus.cg@gmail.com>",
"Elijah Andrews <elijahcandrews@gmail.com>",
]
[workspace]
members = ["benchmarks", "client/bin", "client/dummy", "client/lib", "common", "server/bin", "server/lib", "server/lib/terrain"]
[[bin]]
name = "playform"
path = "src/mod.rs"
[features]
default = ["audio"]
dummy-client = ["dummy-client-lib"]
audio = ["client-lib/audio"]
[dependencies]
env_logger= "*"
log = "*"
nanomsg = "*"
thread-scoped = "*"
time = "*"
[dependencies.client-lib]
path = "client/lib"
default-features = false
[dependencies.dummy-client-lib]
path = "client/dummy"
optional = true
[dependencies.server-lib]
path = "server/lib"
[dependencies.stopwatch]
git = "https://github.com/bfops/stopwatch-rs"