iced-yoda/winit/Cargo.toml

40 lines
869 B
TOML
Raw Normal View History

2019-10-03 00:01:45 +02:00
[package]
name = "iced_winit"
2021-03-31 20:06:03 +02:00
version = "0.3.0"
2019-10-03 00:01:45 +02:00
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"
documentation = "https://docs.rs/iced_winit"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
2019-10-03 00:01:45 +02:00
[features]
2020-05-21 04:27:31 +02:00
debug = ["iced_native/debug"]
2019-10-03 00:01:45 +02:00
[dependencies]
2021-03-10 01:16:26 +01:00
window_clipboard = "0.2"
log = "0.4"
thiserror = "1.0"
[dependencies.winit]
version = "0.25"
git = "https://github.com/iced-rs/winit"
2021-10-12 22:41:16 +07:00
rev = "1e6623c4d06d110e5408dcbdf1edebd07e6a200e"
[dependencies.iced_native]
2021-03-31 20:06:03 +02:00
version = "0.4"
path = "../native"
2020-05-20 20:28:35 +02:00
[dependencies.iced_graphics]
2021-03-31 20:06:03 +02:00
version = "0.2"
2020-05-20 20:28:35 +02:00
path = "../graphics"
[dependencies.iced_futures]
2021-03-31 20:06:03 +02:00
version = "0.3"
path = "../futures"
2019-11-30 21:32:46 +09:00
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3.6"