summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 6 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ee0b100a..82279f05 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced"
-version = "0.0.0"
+version = "0.1.0-alpha"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
description = "A GUI runtime, heavily inspired by Elm."
@@ -13,8 +13,10 @@ categories = ["gui"]
[dependencies]
stretch = "0.2"
-nalgebra = "0.18"
-twox-hash = "1.3"
+twox-hash = "1.5"
+
+# Enable to obtain conversion traits
+winit = { version = "0.20.0-alpha3", optional = true }
[dev-dependencies]
-ggez = { version = "0.5", git = "https://github.com/hecrj/ggez" }
+ggez = { version = "0.5", git = "https://github.com/hecrj/ggez.git", branch = "font-cache" }