2018-10-04 20:00:23 -07:00
|
|
|
[package]
|
|
|
|
name = "raytrace-parallel"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The wasm-bindgen Developers"]
|
2018-12-11 16:37:17 -02:00
|
|
|
edition = "2018"
|
2018-10-04 20:00:23 -07:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
console_error_panic_hook = "0.1"
|
2020-05-27 10:07:18 -05:00
|
|
|
js-sys = "0.3.40"
|
2019-02-28 10:37:53 -08:00
|
|
|
rayon = "1.1.0"
|
|
|
|
rayon-core = "1.5.0"
|
2018-10-04 20:00:23 -07:00
|
|
|
raytracer = { git = 'https://github.com/alexcrichton/raytracer', branch = 'update-deps' }
|
2019-09-05 11:18:36 -05:00
|
|
|
futures-channel-preview = "0.3.0-alpha.18"
|
2020-05-27 10:07:18 -05:00
|
|
|
wasm-bindgen = { version = "0.2.63", features = ['serde-serialize'] }
|
|
|
|
wasm-bindgen-futures = "0.4.13"
|
2018-10-04 20:00:23 -07:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
2019-06-17 20:25:25 +03:00
|
|
|
version = "0.3.23"
|
2018-10-04 20:00:23 -07:00
|
|
|
features = [
|
|
|
|
'CanvasRenderingContext2d',
|
|
|
|
'ErrorEvent',
|
|
|
|
'Event',
|
|
|
|
'ImageData',
|
|
|
|
'Navigator',
|
|
|
|
'Window',
|
|
|
|
'Worker',
|
|
|
|
'DedicatedWorkerGlobalScope',
|
|
|
|
'MessageEvent',
|
|
|
|
]
|