iced-yoda/winit/Cargo.toml

71 lines
1.5 KiB
TOML
Raw Normal View History

2019-10-03 00:01:45 +02:00
[package]
name = "iced_winit"
2023-01-14 00:49:58 +01:00
version = "0.7.0"
2019-10-03 00:01:45 +02:00
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2022-02-09 17:53:35 +07:00
edition = "2021"
2019-10-03 00:01:45 +02:00
description = "A winit runtime for Iced"
license = "MIT"
2022-05-02 21:53:25 +02:00
repository = "https://github.com/iced-rs/iced"
documentation = "https://docs.rs/iced_winit"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
2019-10-03 00:01:45 +02:00
[features]
trace = ["tracing", "tracing-core", "tracing-subscriber"]
chrome-trace = ["trace", "tracing-chrome"]
2020-05-21 04:27:31 +02:00
debug = ["iced_native/debug"]
system = ["sysinfo"]
application = []
multi_window = []
2019-10-03 00:01:45 +02:00
[dependencies]
2022-01-27 14:56:28 -06:00
window_clipboard = "0.2"
log = "0.4"
thiserror = "1.0"
[dependencies.winit]
2022-08-15 08:10:28 -04:00
version = "0.27"
git = "https://github.com/iced-rs/winit.git"
rev = "940457522e9fb9f5dac228b0ecfafe0138b4048c"
[dependencies.iced_native]
2023-01-14 00:49:58 +01:00
version = "0.8"
path = "../native"
2020-05-20 20:28:35 +02:00
[dependencies.iced_graphics]
2023-01-14 00:49:58 +01:00
version = "0.6"
2020-05-20 20:28:35 +02:00
path = "../graphics"
[dependencies.iced_futures]
2022-11-10 01:20:11 +01:00
version = "0.5"
path = "../futures"
[dependencies.tracing]
version = "0.1.37"
optional = true
features = ["std"]
[dependencies.tracing-core]
version = "0.1.30"
optional = true
[dependencies.tracing-subscriber]
version = "0.3.16"
optional = true
features = ["registry"]
[dependencies.tracing-chrome]
version = "0.7.0"
2022-11-29 19:50:58 -08:00
optional = true
2019-11-30 21:32:46 +09:00
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3.6"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = ["Document", "Window"]
[dependencies.sysinfo]
version = "0.23"
optional = true