iced-yoda/glutin/Cargo.toml

31 lines
644 B
TOML
Raw Normal View History

2020-05-21 00:37:47 +02:00
[package]
name = "iced_glutin"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
description = "A glutin runtime for Iced"
license = "MIT"
repository = "https://github.com/hecrj/iced"
documentation = "https://docs.rs/iced_glutin"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
[features]
debug = ["iced_winit/debug"]
[dependencies]
glutin = "0.26"
2020-05-21 00:37:47 +02:00
[dependencies.iced_native]
2020-11-26 07:48:12 +01:00
version = "0.3"
2020-05-21 00:37:47 +02:00
path = "../native"
[dependencies.iced_winit]
2020-11-26 07:48:12 +01:00
version = "0.2"
2020-05-21 00:37:47 +02:00
path = "../winit"
[dependencies.iced_graphics]
version = "0.1"
path = "../graphics"
features = ["opengl"]