-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 894 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
[package]
name = "ipv8-game"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.9"
diesel = { version = "2", features = ["postgres", "uuid", "r2d2", "chrono"] }
diesel_migrations = "2"
dotenv = "0.15"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3"
ipv8-proto-rust = { git = "https://github.com/realliance/ipv8-proto.git", rev = "137aa4dea8dd810714dc0e0095b4fd8d0d8e930e" }
capnp-rpc = "0.14"
chrono = "0.4"
rand = "0.8"
uuid = { version = "1", features = ["v4"] }
hashbrown = "0.12"
toml = "0.5"
tokio = { version = "1", features = ["full"] }
lazy_static = "1"
clap = { version = "4", features = ["derive"] }
glob = "0.3"
noise = "0.8"
rayon = "1.6"
itertools = "0.10"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3