mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2025-01-07 13:43:03 +03:00
eba691f38c
* Added example-tests to the crate nopublish list * Bumped crate versions
34 lines
686 B
TOML
34 lines
686 B
TOML
[package]
|
|
name = "raytrace-parallel"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = "0.1"
|
|
js-sys = "0.3.60"
|
|
rayon = "1.1.0"
|
|
rayon-core = "1.5.0"
|
|
raytracer = { git = 'https://github.com/alexcrichton/raytracer', branch = 'update-deps' }
|
|
serde-wasm-bindgen = "0.4.3"
|
|
futures-channel-preview = "0.3.0-alpha.18"
|
|
wasm-bindgen = "0.2.83"
|
|
wasm-bindgen-futures = "0.4.33"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.23"
|
|
features = [
|
|
'CanvasRenderingContext2d',
|
|
'ErrorEvent',
|
|
'Event',
|
|
'ImageData',
|
|
'Navigator',
|
|
'Window',
|
|
'Worker',
|
|
'DedicatedWorkerGlobalScope',
|
|
'MessageEvent',
|
|
]
|