2020-05-21 00:37:47 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_glutin"
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.6.0"
|
2020-05-21 00:37:47 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2022-02-09 17:53:35 +07:00
|
|
|
edition = "2021"
|
2020-05-21 00:37:47 +02:00
|
|
|
description = "A glutin runtime for Iced"
|
|
|
|
|
license = "MIT"
|
2021-12-23 09:34:37 +02:00
|
|
|
repository = "https://github.com/iced-rs/iced"
|
2020-05-21 00:37:47 +02:00
|
|
|
documentation = "https://docs.rs/iced_glutin"
|
|
|
|
|
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
|
|
|
|
|
categories = ["gui"]
|
|
|
|
|
|
|
|
|
|
[features]
|
2023-01-13 11:56:28 -08:00
|
|
|
trace = ["iced_winit/trace", "tracing"]
|
2020-05-21 00:37:47 +02:00
|
|
|
debug = ["iced_winit/debug"]
|
2022-04-30 13:37:57 +02:00
|
|
|
system = ["iced_winit/system"]
|
2022-09-19 16:01:50 -03:00
|
|
|
multi_window = ["iced_winit/multi_window"]
|
2020-05-21 00:37:47 +02:00
|
|
|
|
2022-10-31 20:23:24 -03:00
|
|
|
[dependencies.raw-window-handle]
|
|
|
|
|
version = "0.5.0"
|
|
|
|
|
|
2023-01-12 05:26:39 +01:00
|
|
|
[dependencies]
|
|
|
|
|
log = "0.4"
|
2022-01-27 06:02:19 -03:00
|
|
|
|
2021-06-14 17:21:55 -03:00
|
|
|
[dependencies.glutin]
|
2022-10-31 16:57:57 -03:00
|
|
|
version = "0.30"
|
2020-05-21 00:37:47 +02:00
|
|
|
|
|
|
|
|
[dependencies.iced_native]
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.8"
|
2020-05-21 00:37:47 +02:00
|
|
|
path = "../native"
|
|
|
|
|
|
|
|
|
|
[dependencies.iced_winit]
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.7"
|
2020-05-21 00:37:47 +02:00
|
|
|
path = "../winit"
|
2022-11-02 15:57:55 +09:00
|
|
|
features = ["application"]
|
2020-05-21 00:37:47 +02:00
|
|
|
|
|
|
|
|
[dependencies.iced_graphics]
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.6"
|
2020-05-21 00:37:47 +02:00
|
|
|
path = "../graphics"
|
|
|
|
|
features = ["opengl"]
|
2022-11-29 19:50:58 -08:00
|
|
|
|
2022-12-20 20:41:09 -08:00
|
|
|
[dependencies.tracing]
|
|
|
|
|
version = "0.1.6"
|
2023-01-12 05:26:39 +01:00
|
|
|
optional = true
|