[package] name = "road_parceling_studio" version = "0.1.0" edition = "2021" authors = ["Dane Sabo"] description = "Interactive test harness for road_parceling — place roads, drag nodes, watch parcels regenerate." license = "MIT OR Apache-2.0" [lib] crate-type = ["cdylib", "rlib"] [dependencies] road_parceling = { path = "../road_parceling" } glam = "0.29" egui = "0.28" log = "0.4" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] eframe = { version = "0.28", default-features = false, features = ["default_fonts", "glow", "wayland", "x11"] } env_logger = "0.11" [target.'cfg(target_arch = "wasm32")'.dependencies] eframe = { version = "0.28", default-features = false, features = ["default_fonts", "glow"] } wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4" web-sys = { version = "0.3", features = ["Document", "Window", "HtmlCanvasElement"] } console_error_panic_hook = "0.1" [lints.rust] unsafe_code = "forbid"