mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-19 16:11:50 +03:00
30 lines
678 B
TOML
30 lines
678 B
TOML
|
[package]
|
||
|
name = "raytrace-parallel"
|
||
|
version = "0.1.0"
|
||
|
authors = ["The wasm-bindgen Developers"]
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
console_error_panic_hook = "0.1"
|
||
|
futures = "0.1"
|
||
|
js-sys = { path = '../../crates/js-sys' }
|
||
|
raytracer = { git = 'https://github.com/alexcrichton/raytracer', branch = 'update-deps' }
|
||
|
wasm-bindgen = { path = "../..", features = ['serde-serialize'] }
|
||
|
wasm-bindgen-futures = { path = '../../crates/futures' }
|
||
|
|
||
|
[dependencies.web-sys]
|
||
|
path = '../../crates/web-sys'
|
||
|
features = [
|
||
|
'CanvasRenderingContext2d',
|
||
|
'ErrorEvent',
|
||
|
'Event',
|
||
|
'ImageData',
|
||
|
'Navigator',
|
||
|
'Window',
|
||
|
'Worker',
|
||
|
'DedicatedWorkerGlobalScope',
|
||
|
'MessageEvent',
|
||
|
]
|