Skip to content

Commit b9a9576

Browse files
committed
Remove iced_glow, glyph-brush, and wgpu_glyph dependencies
1 parent 573d27e commit b9a9576

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+30
-3846
lines changed

Cargo.toml

+2-9
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,15 @@ categories = ["gui"]
1414
[features]
1515
default = ["wgpu"]
1616
# Enables the `Image` widget
17-
image = ["iced_wgpu?/image", "iced_glow?/image", "image_rs"]
17+
image = ["iced_wgpu?/image", "image_rs"]
1818
# Enables the `Svg` widget
19-
svg = ["iced_wgpu?/svg", "iced_glow?/svg"]
19+
svg = ["iced_wgpu?/svg"]
2020
# Enables the `Canvas` widget
2121
canvas = ["iced_graphics/canvas"]
2222
# Enables the `QRCode` widget
2323
qr_code = ["iced_graphics/qr_code"]
2424
# Enables the `iced_wgpu` renderer
2525
wgpu = ["iced_wgpu"]
26-
# Enables using system fonts
27-
default_system_font = ["iced_wgpu?/default_system_font", "iced_glow?/default_system_font"]
28-
# Enables the `iced_glow` renderer. Overrides `iced_wgpu`
29-
glow = ["iced_glow", "iced_glutin"]
3026
# Enables a debug view in native platforms (press F12)
3127
debug = ["iced_winit/debug"]
3228
# Enables `tokio` as the `executor::Default` on native platforms
@@ -44,7 +40,6 @@ chrome-trace = [
4440
"iced_winit/chrome-trace",
4541
"iced_glutin?/trace",
4642
"iced_wgpu?/tracing",
47-
"iced_glow?/tracing",
4843
]
4944

5045
[badges]
@@ -55,7 +50,6 @@ members = [
5550
"core",
5651
"futures",
5752
"graphics",
58-
"glow",
5953
"glutin",
6054
"lazy",
6155
"native",
@@ -72,7 +66,6 @@ iced_native = { version = "0.9", path = "native" }
7266
iced_graphics = { version = "0.7", path = "graphics" }
7367
iced_winit = { version = "0.8", path = "winit", features = ["application"] }
7468
iced_glutin = { version = "0.7", path = "glutin", optional = true }
75-
iced_glow = { version = "0.7", path = "glow", optional = true }
7669
thiserror = "1.0"
7770

7871
[dependencies.image_rs]

examples/integration_wgpu/Cargo.toml renamed to examples/integration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "integration_wgpu"
2+
name = "integration"
33
version = "0.1.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
File renamed without changes.

examples/integration_wgpu/index.html renamed to examples/integration/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<h1>integration_wgpu</h1>
99
<canvas id="iced_canvas"></canvas>
1010
<script type="module">
11-
import init from "./integration_wgpu.js";
12-
init('./integration_wgpu_bg.wasm');
11+
import init from "./integration.js";
12+
init('./integration_bg.wasm');
1313
</script>
1414
<style>
1515
body {

examples/integration_opengl/Cargo.toml

-12
This file was deleted.

examples/integration_opengl/README.md

-16
This file was deleted.

examples/integration_opengl/src/controls.rs

-101
This file was deleted.

examples/integration_opengl/src/main.rs

-187
This file was deleted.

0 commit comments

Comments
 (0)