diff options
Diffstat (limited to '')
-rw-r--r-- | winit/Cargo.toml | 12 | ||||
-rw-r--r-- | winit/src/lib.rs | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/winit/Cargo.toml b/winit/Cargo.toml new file mode 100644 index 00000000..d7f61503 --- /dev/null +++ b/winit/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "iced_winit" +version = "0.1.0-alpha" +authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] +edition = "2018" +description = "A winit runtime for Iced" +license = "MIT" +repository = "https://github.com/hecrj/iced" + +[dependencies] +iced_native = { version = "0.1.0-alpha", path = "../native" } +winit = "0.20.0-alpha3" diff --git a/winit/src/lib.rs b/winit/src/lib.rs new file mode 100644 index 00000000..0e5846c5 --- /dev/null +++ b/winit/src/lib.rs @@ -0,0 +1 @@ +pub use iced_native::*; |