forked from hasenbanck/egui_winit_platform
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 662 Bytes
/
Cargo.toml
File metadata and controls
21 lines (19 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "egui_winit_platform"
version = "0.23.0"
authors = ["Nils Hasenbanck <nils@hasenbanck.de>"]
edition = "2018"
description = "Platform code to use egui with winit."
homepage = "https://github.com/hasenbanck/egui_winit_platform"
repository = "https://github.com/hasenbanck/egui_winit_platform"
license = "MIT OR Apache-2.0"
readme = "README.md"
[dependencies]
egui = { version = "0.28", default-features = false }
winit = { version = "0.30" }
copypasta = { version = "0.8", optional = true }
webbrowser = { version = "0.8", optional = true }
[features]
default = ["default_fonts"]
clipboard = ["copypasta"]
default_fonts = ["egui/default_fonts"]