2019-09-14 19:16:06 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced"
|
2019-11-20 09:56:16 +01:00
|
|
|
version = "0.1.0-beta"
|
2019-09-14 19:16:06 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
|
|
|
edition = "2018"
|
2019-09-20 19:15:31 +02:00
|
|
|
description = "A cross-platform GUI library inspired by Elm"
|
2019-09-14 19:16:06 +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-11-03 04:39:11 +01:00
|
|
|
[features]
|
|
|
|
|
# Enables a debug view in native platforms (press F12)
|
|
|
|
|
debug = ["iced_winit/debug"]
|
2019-12-15 06:45:20 +01:00
|
|
|
# Enables support for SVG rendering
|
|
|
|
|
svg = ["iced_wgpu/svg"]
|
2019-11-03 04:39:11 +01:00
|
|
|
|
2019-09-14 19:16:06 +02:00
|
|
|
[badges]
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
2019-09-10 19:41:49 +02:00
|
|
|
[workspace]
|
|
|
|
|
members = [
|
2019-09-20 19:15:31 +02:00
|
|
|
"core",
|
|
|
|
|
"native",
|
2019-09-14 19:16:06 +02:00
|
|
|
"web",
|
2019-10-08 03:13:41 +02:00
|
|
|
"wgpu",
|
|
|
|
|
"winit",
|
2019-09-10 19:41:49 +02:00
|
|
|
]
|
2019-10-03 00:01:45 +02:00
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
|
iced_winit = { version = "0.1.0-alpha", path = "winit" }
|
2019-11-20 09:56:16 +01:00
|
|
|
iced_wgpu = { version = "0.1.0", path = "wgpu" }
|
2019-10-03 00:01:45 +02:00
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2019-11-25 14:55:14 +01:00
|
|
|
iced_web = { version = "0.1.0", path = "web" }
|
2019-10-07 03:56:16 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-13 23:58:23 +01:00
|
|
|
iced_native = { version = "0.1", path = "./native" }
|
|
|
|
|
iced_wgpu = { version = "0.1", path = "./wgpu" }
|
2019-10-07 03:56:16 +02:00
|
|
|
env_logger = "0.7"
|
2019-11-17 07:38:01 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
directories = "2.0"
|
2019-12-13 23:58:23 +01:00
|
|
|
futures = "0.3"
|
|
|
|
|
async-std = { version = "1.3", features = ["unstable"] }
|
2019-12-28 12:21:06 +01:00
|
|
|
surf = "1.0"
|
2019-12-04 03:55:33 +01:00
|
|
|
rand = "0.7"
|
2019-10-23 02:34:11 +02:00
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
|
|
|
wasm-bindgen = "0.2.51"
|