[package] name = "opencut-wasm" version = "0.1.3" edition = "2024" description = "Shared video editor logic compiled to WebAssembly" repository = "https://github.com/opencut/opencut" license = "MIT" [lib] path = "src/wasm.rs" crate-type = ["cdylib", "rlib"] [dependencies] gpu = { version = "0.1.0", path = "../crates/gpu" } js-sys = "0.3.93" serde = { version = "1.0.228", features = ["derive"] } serde-wasm-bindgen = "0.6.5" time = { version = "0.1.0", path = "../crates/time", features = ["wasm"] } wasm-bindgen = "0.2.116" wasm-bindgen-futures = "0.4.66" web-sys = { version = "0.3.93", features = ["OffscreenCanvas", "HtmlCanvasElement", "CanvasRenderingContext2d", "Document", "Window"] }