-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (47 loc) · 1.05 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
[package]
name = "deterministic-online-coop-experiment"
version = "0.1.0"
authors = ["Nguyễn Đức Long <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
debug = 1
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
[dependencies]
bevy = "0.5"
bevy_easings = "*"
bevy_egui = "0.5"
bevy_rapier3d = { git = "https://github.com/dimforge/bevy_rapier", features = ["enhanced-determinism", "serde-serialize"] }
bevy-inspector-egui = "*"
bitflags = "*"
fake = "*"
futures = "*"
libp2p = { version = "*", default-features = false, features = [
"deflate",
"dns-async-std",
"floodsub",
"identify",
"kad",
"gossipsub",
"mdns",
"mplex",
"noise",
"ping",
"plaintext",
"pnet",
"relay",
"request-response",
"secp256k1",
"tcp-async-io",
"uds",
"websocket",
"yamux",
]}
rand = "*"
rand_pcg = "*"
serde = { version = "*", features = ["derive"] }
serde_json = "*"