Files
openworm/Cargo.toml
2026-02-16 23:56:07 -05:00

48 lines
1.2 KiB
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"
zstd = "0.13.3"
ron = "0.12.0"
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", "sys_rng"] }
keyring = { version = "4.0.0-rc.3" }
bitcode = "0.6.9"
dashmap = "6.1.0"
fjall = "3.0.1"
time = { version = "0.3.47", features = ["local-offset"] }
serde = { version = "1.0.228", features = ["derive"] }
derive_more = { version = "2.1.1", features = ["deref", "deref_mut"] }
keyring-core = "0.7.2"
[[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