1
0
mirror of https://github.com/osmarks/ewo3.git synced 2026-04-26 17:01:23 +00:00
Files
ewo3/Cargo.toml
2026-03-14 13:02:13 +00:00

51 lines
1.2 KiB
TOML

[package]
name = "ewo3"
version = "0.1.0"
edition = "2021"
default-run = "ewo3"
[dependencies]
hecs = { version = "0.11", 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.0.228", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
slab = "0.4"
lazy_static = "1"
seahash = "4"
noise-functions = "0.2"
indexmap = { version = "2", features = ["serde"] }
image = { version = "0.25", default-features = false, features = ["png"] }
rayon = "1"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
smallvec = { version = "1", features = ["serde"] }
argh = "0.1"
ndarray-conv = "0.6.0"
ndarray = "0.17.2"
enum-map = { version = "2.7.3", features = ["serde"] }
imgui = "0.12"
imgui-winit-support = "0.12"
imgui-glow-renderer = "0.12"
glow = "0.13"
glutin = "0.31"
glutin-winit = "0.4"
raw-window-handle = "0.5"
winit = "0.29"
oklab = "1.1.2"
[[bin]]
name = "render"
path = "src/render.rs"
[profile.release]
debug = true
[patch.crates-io]
hecs = { git = "https://github.com/osmarks/hecs-patch" }