[#157] start backend refactoring.
Initial commit web window crate. Remove common window crate.
Showing
This diff is collapsed.
... | ... | @@ -21,21 +21,22 @@ edition = "2018" |
name = "orbtk" | ||
path = "src/lib.rs" | ||
[target.wasm32-unknown-unknown.dependencies] | ||
orbtk-web-window = { version = "0.1.0", path = "crates/web-window" } | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
orbgl = { git = "https://gitlab.redox-os.org/redox-os/orbgl.git" } | ||
orbfont = { git = "https://gitlab.redox-os.org/redox-os/orbfont.git" } | ||
orbimage = "0.1.17" | ||
orbclient = "0.3.21" | ||
[dependencies] | ||
cssparser = "0.17.0" | ||
lazy_static = "1.3.0" | ||
# dces = { path = "../dces-rust"} | ||
dces = { git = "https://gitlab.redox-os.org/redox-os/dces-rust.git" } | ||
orbclient = "0.3.9" | ||
orbfont = { git = "https://gitlab.redox-os.org/redox-os/orbfont.git" } | ||
orbimage = "0.1.9" | ||
# orbgl_api = { path = "../orbgl/orbgl_api" } | ||
orbgl_api = { git = "https://gitlab.redox-os.org/redox-os/orbgl.git" } | ||
# orbgl = { path = "../orbgl/orbgl" } | ||
orbgl = { git = "https://gitlab.redox-os.org/redox-os/orbgl.git" } | ||
# orbgl_shapes = { path = "../orbgl/orbgl_shapes" } | ||
orbgl_shapes = { git = "https://gitlab.redox-os.org/redox-os/orbgl.git" } | ||
orbtk-windows = { version = "0.1.0", path = "crates/windows" } | ||
[workspace] | ||
\ No newline at end of file |
crates/web-window/src/lib.rs
0 → 100644