mirror of https://github.com/emilk/egui.git
Emil Ernerfeldt
6 years ago
14 changed files with 67 additions and 49 deletions
@ -1,2 +1,3 @@ |
|||
*.sublime* |
|||
/docs/*.d.ts |
|||
/target |
|||
|
Binary file not shown.
@ -0,0 +1,12 @@ |
|||
[package] |
|||
name = "emgui" |
|||
version = "0.1.0" |
|||
authors = ["Emil Ernerfeldt <emilernerfeldt@gmail.com>"] |
|||
edition = "2018" |
|||
|
|||
[lib] |
|||
|
|||
[dependencies] |
|||
# palette = "0.4" |
|||
serde = "1" |
|||
serde_derive = "1" |
@ -0,0 +1,16 @@ |
|||
#![deny(warnings)] |
|||
|
|||
extern crate serde; |
|||
|
|||
#[macro_use] // TODO: get rid of this
|
|||
extern crate serde_derive; |
|||
|
|||
mod emgui; |
|||
mod layout; |
|||
pub mod math; |
|||
mod style; |
|||
pub mod types; |
|||
|
|||
pub use crate::{ |
|||
emgui::Emgui, layout::Layout, layout::LayoutOptions, style::Style, types::RawInput, |
|||
}; |
@ -0,0 +1,17 @@ |
|||
[package] |
|||
name = "emgui_wasm" |
|||
version = "0.1.0" |
|||
authors = ["Emil Ernerfeldt <emilernerfeldt@gmail.com>"] |
|||
edition = "2018" |
|||
|
|||
[lib] |
|||
crate-type = ["cdylib", "rlib"] |
|||
|
|||
[dependencies] |
|||
lazy_static = "1" |
|||
serde = "1" |
|||
serde_json = "1" |
|||
wasm-bindgen = "0.2" |
|||
# web-sys = { version = "0.3.5", features = ['console', 'Performance', 'Window'] } |
|||
|
|||
emgui = { path = "../emgui" } |
Loading…
Reference in new issue