iced-yoda/Cargo.toml

53 lines
1.3 KiB
TOML
Raw Normal View History

2019-09-14 19:16:06 +02:00
[package]
name = "iced"
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"]
[features]
# Enables a debug view in native platforms (press F12)
debug = ["iced_winit/debug"]
# Enables support for SVG rendering
svg = ["iced_wgpu/svg"]
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",
"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" }
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"
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"] }
surf = "1.0"
rand = "0.7"
2019-10-23 02:34:11 +02:00
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen = "0.2.51"