[package] name = "projective-transform" version = "0.3.8" authors = ["sunkplane29 "] edition = "2018" description = "projective transform package for use with WebAssembly" license = "MIT" [lib] crate-type = ["cdylib"] [features] default = ["console_error_panic_hook"] [dependencies] wasm-bindgen = "0.2.63" nalgebra = "0.29.0" rand = "0.8.4" # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires # all the `std::fmt` and `std::panicking` infrastructure, so isn't great for # code size when deploying. console_error_panic_hook = { version = "0.1.6", optional = true } [dev-dependencies] wasm-bindgen-test = "0.3.13" [profile.release] # Tell `rustc` to optimize for small code size. opt-level = "s"