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

28 lines
708 B
TOML
Raw Normal View History

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