-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
47 lines (36 loc) · 953 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
45
46
47
[package]
name = "amoba"
edition = "2021"
publish = false
version = "0.0.1"
[dependencies]
ambient_api = { git = "https://github.com/AmbientRun/Ambient.git", rev = "c2ed491315c21f2f0f6adee8520cc0a81c69eb07" }
[[bin]]
name = "server_scene"
path = "src/scene/server.rs"
required-features = ["server"]
[[bin]]
name = "client_scene"
path = "src/scene/client.rs"
required-features = ["client"]
[[bin]]
name = "client_ui"
path = "src/ui/client.rs"
required-features = ["client"]
[[bin]]
name = "server_ui"
path = "src/ui/server.rs"
required-features = ["server"]
[[bin]]
name = "server_player"
path = "src/player/server.rs"
required-features = ["server"]
[[bin]]
name = "client_map"
path = "src/map/client.rs"
required-features = ["client"]
# src/_client and src/_server will not be used, just a ref to old implementation
# zombie and player health are not implemented yet
[features]
client = ["ambient_api/client"]
server = ["ambient_api/server"]