-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
38 lines (36 loc) · 1.07 KB
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
[package]
name = "launch"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
void = "1.0.2"
crossbeam-channel = "0.5.6"
components = {path = "components"}
bevy = "0.7.0"
bevy_rapier2d = { version = "0.15.0", features = [ "enhanced-determinism" ]}
rand = { version = "0.8.5", features = ["small_rng"] }
rand_pcg = "0.3.1"
rand_seeder = "0.2.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
futures = "0.3"
tokio = "1.19.2"
libp2p = {version = "0.46.1", features = ["serde"]}
async-std = {version = "1.12.0", features = ["attributes"]}
env_logger = "0.9.0"
clap = {version = "3.2.6", features = [ "derive" ]}
async-trait = "0.1.56"
sha2 = "0.10.2"
anyhow = "1.0.56"
async-stream = "0.3.2"
http = "0.2.6"
log = "0.4.14"
pin-project = "1.0.10"
streamunordered = "0.5.2"
thiserror = "1.0.30"
bevy_transform_gizmo = {path = "components/crates/bevy_transform_gizmo-0.2-2.1"}
bevy_mod_picking = "0.7.0"
bevy_mod_raycast = "0.5.0"
rocksdb = "0.18.0"
serde-big-array = "0.4.1"