1
0
mirror of https://github.com/osmarks/ewo3.git synced 2025-02-01 11:49:18 +00:00
ewo3/Cargo.toml

27 lines
649 B
TOML
Raw Normal View History

2024-06-09 18:08:37 +00:00
[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"
2024-06-18 18:31:24 +00:00
noise-functions = "0.2"
2024-07-19 10:06:44 +00:00
indexmap = "2"
image = { version = "0.25", default-features = false, features = ["png"] }
rayon = "1"
[[bin]]
name = "worldgen"
path = "src/worldgen_test.rs"