mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-16 14:02:06 +03:00
31 lines
638 B
TOML
31 lines
638 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"
|
|
futures = "0.1"
|
|
js-sys = "0.3.16"
|
|
raytracer = { git = 'https://github.com/alexcrichton/raytracer', branch = 'update-deps' }
|
|
wasm-bindgen = { version = "0.2.39", features = ['serde-serialize'] }
|
|
wasm-bindgen-futures = "0.3.16"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = [
|
|
'CanvasRenderingContext2d',
|
|
'ErrorEvent',
|
|
'Event',
|
|
'ImageData',
|
|
'Navigator',
|
|
'Window',
|
|
'Worker',
|
|
'DedicatedWorkerGlobalScope',
|
|
'MessageEvent',
|
|
]
|