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" sled = "0.34.7" clap = { version = "4.5.53", features = ["derive"] } scrypt = "0.11.0" ed25519-dalek = { version = "3.0.0-pre.2", features = ["rand_core"] } rand = { version = "0.10.0-rc.5", features = ["chacha"] } [[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