1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 06:10:06 -04:00

Rust 1.60.0 + refactor cargo features (#1467)

* Update to rust 1.60.0
* Rename the feature `convert_bytemuck` to `bytemuck`
* Rename the feature `serialize` to `serde`.
* Make use of the "weak dependency" cargo feature
* Set rust-version = "1.60" for all crates
* egui_glow: clipboard, links, persistence & winit are now opt-in features
This commit is contained in:
Emil Ernerfeldt
2022-04-09 13:54:47 +02:00
committed by GitHub
parent bdfc512b01
commit cf0338d48f
26 changed files with 73 additions and 53 deletions

View File

@@ -7,6 +7,8 @@ All notable changes to the `egui_glow` integration will be noted in this file.
* Add new `NativeOptions`: `vsync`, `multisampling`, `depth_buffer`, `stencil_buffer`.
* `dark-light` (dark mode detection) is now an opt-in feature ([#1437](https://github.com/emilk/egui/pull/1437)).
* Fixed potential scale bug when DPI scaling changes (e.g. when dragging a window between different displays) ([#1441](https://github.com/emilk/egui/pull/1441)).
* MSRV (Minimum Supported Rust Version) is now `1.60.0` ([#1467](https://github.com/emilk/egui/pull/1467)).
* `clipboard`, `links`, `persistence`, `winit` are now all opt-in features ([#1467](https://github.com/emilk/egui/pull/1467)).
## 0.17.0 - 2022-02-22

View File

@@ -4,7 +4,7 @@ version = "0.17.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Bindings for using egui natively using the glow library"
edition = "2021"
rust-version = "1.56"
rust-version = "1.60"
homepage = "https://github.com/emilk/egui/tree/master/egui_glow"
license = "MIT OR Apache-2.0"
readme = "README.md"
@@ -24,7 +24,7 @@ all-features = true
[features]
default = ["clipboard", "default_fonts", "links", "persistence", "winit"]
default = ["default_fonts"]
# enable cut/copy/paste to OS clipboard.
# if disabled a clipboard will be simulated so you can still copy/paste within the egui app.
@@ -41,9 +41,8 @@ links = ["egui-winit/links"]
persistence = [
"egui-winit/persistence",
"egui/persistence",
"epi", # also implied by the lines below, see https://github.com/rust-lang/cargo/issues/8832
"epi/file_storage",
"epi/persistence",
"epi?/file_storage",
"epi?/persistence",
]
# experimental support for a screen reader
@@ -53,12 +52,12 @@ screen_reader = ["egui-winit/screen_reader"]
# if you want to use glow painter on web disable this feature.
winit = ["egui-winit", "glutin"]
dark-light = ["egui-winit/dark-light"] # detect dark mode system preference
dark-light = ["egui-winit/dark-light"] # detect dark mode system preference
[dependencies]
egui = { version = "0.17.0", path = "../egui", default-features = false, features = [
"convert_bytemuck",
"bytemuck",
] }
epi = { version = "0.17.0", path = "../epi", optional = true }
@@ -67,12 +66,14 @@ glow = "0.11"
memoffset = "0.6"
tracing = "0.1"
# Native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.17.0", path = "../egui-winit", optional = true, default-features = false, features = [
"epi_backend",
] }
glutin = { version = "0.28.0", optional = true }
# Web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features = ["console"] }
wasm-bindgen = { version = "0.2" }