mirror of
https://github.com/osmarks/ewo3.git
synced 2025-01-20 22:17:06 +00:00
31 lines
779 B
TOML
31 lines
779 B
TOML
[package]
|
|
name = "ewo3"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
hecs = { version = "0.10", features = ["column-serialize"] }
|
|
euclid = { version = "0.22", features = ["serde"] }
|
|
fastrand = "2"
|
|
tokio-tungstenite = "0.23"
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures-util = "0.3"
|
|
tokio-macros = { version = "0.2.0-alpha.6" }
|
|
anyhow = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
slab = "0.4"
|
|
lazy_static = "1"
|
|
seahash = "4"
|
|
noise-functions = "0.2"
|
|
indexmap = "2"
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
|
rayon = "1"
|
|
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
|
|
|
|
[[bin]]
|
|
name = "worldgen"
|
|
path = "src/worldgen_test.rs"
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
rustflags = ["-Ctarget-cpu=native"] |