37 lines
739 B
TOML
37 lines
739 B
TOML
cargo-features = ["codegen-backend"]
|
|
|
|
[package]
|
|
name = "openworm"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
default-run = "openworm-client"
|
|
|
|
[dependencies]
|
|
arboard = { version = "3.6.1", features = ["wayland-data-control"] }
|
|
directories-next = "2.0.0"
|
|
pollster = "0.4.0"
|
|
quinn = { version = "0.11.9", features = ["rustls-ring"] }
|
|
rcgen = "0.14.5"
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
|
tracing = "0.1.41"
|
|
iris = { path = "./iris" }
|
|
wgpu = "27.0.1"
|
|
winit = "0.30.12"
|
|
bincode = "2.0.1"
|
|
zstd = "0.13.3"
|
|
ron = "0.12.0"
|
|
|
|
[[bin]]
|
|
name = "openworm-client"
|
|
path = "src/bin/client/main.rs"
|
|
|
|
[[bin]]
|
|
name = "openworm-server"
|
|
path = "src/bin/server/main.rs"
|
|
|
|
[profile.dev]
|
|
codegen-backend = "cranelift"
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 1
|