Start implementing web-sys backend

This commit is contained in:
Ben Merritt 2019-06-03 22:51:01 -07:00
parent 182beb4f8b
commit e4d8e22846
No known key found for this signature in database
GPG key ID: F8AD20ED4E6239B7
11 changed files with 479 additions and 15 deletions

View file

@ -115,6 +115,10 @@ extern crate smithay_client_toolkit as sctk;
extern crate stdweb;
#[cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))]
extern crate calloop;
#[cfg(feature = "web-sys")]
extern crate wasm_bindgen;
#[cfg(feature = "web-sys")]
extern crate web_sys;
pub mod dpi;
#[macro_use]