2019-05-29 03:17:48 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced"
|
2019-08-30 02:59:53 +02:00
|
|
|
version = "0.1.0-alpha"
|
2019-05-29 03:17:48 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
|
|
|
edition = "2018"
|
2019-07-28 13:41:59 +02:00
|
|
|
description = "A GUI runtime, heavily inspired by Elm."
|
2019-05-29 03:17:48 +02:00
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/hecrj/iced"
|
|
|
|
|
documentation = "https://docs.rs/iced"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
|
|
|
|
|
categories = ["gui"]
|
|
|
|
|
|
2019-09-05 09:59:38 +02:00
|
|
|
[badges]
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
features = ["winit"]
|
|
|
|
|
|
2019-05-29 03:17:48 +02:00
|
|
|
[dependencies]
|
2019-07-20 19:12:31 +02:00
|
|
|
stretch = "0.2"
|
2019-08-30 01:54:41 +02:00
|
|
|
twox-hash = "1.5"
|
2019-09-01 20:29:59 +02:00
|
|
|
|
|
|
|
|
# Enable to obtain conversion traits
|
2019-09-01 05:28:19 +02:00
|
|
|
winit = { version = "0.20.0-alpha3", optional = true }
|
2019-07-21 12:35:25 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-09-04 11:09:57 +02:00
|
|
|
ggez = { version = "0.5", git = "https://github.com/hecrj/ggez.git" }
|