forked from Ralith/hypermine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 781 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
[package]
name = "common"
version = "0.1.0"
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>"]
edition = "2018"
publish = false
license = "Apache-2.0 OR Zlib"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.104", features = ["derive"] }
na = { package = "nalgebra", version = "0.19", features = ["serde-serialize"] }
bincode = "1.2.1"
anyhow = "1.0.26"
quinn = "0.8.3"
lazy_static = "1.4.0"
fxhash = "0.2.1"
tracing = "0.1.10"
hecs = "0.9.0"
tracing-subscriber = { version = "0.2.5", default-features = false, features = ["env-filter", "smallvec", "fmt", "ansi", "chrono", "parking_lot"] }
rand = "0.7.3"
rand_pcg = "0.2.1"
rand_distr = "0.3.0"
[dev-dependencies]
approx = "0.3.2"