egui-sdl3 0.4.0

egui + SDL3: event handling and rendering via OpenGL, Canvas, WebGPU
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "egui-sdl3"
version = "0.4.0"
authors = [
    "troidem <mxmgorin@gmail.com>",
    "Abus <git@abus.sh>",
]
build = false
include = [
    "../LICENSE-APACHE",
    "../LICENSE-MIT",
    "**/*.rs",
    "Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "egui + SDL3: event handling and rendering via OpenGL, Canvas, WebGPU"
homepage = "https://github.com/abus-sh/egui-sdl3"
readme = "README.md"
keywords = [
    "sdl3",
    "egui",
    "gui",
    "gamedev",
]
categories = ["gui"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/abus-sh/egui-sdl3"

[features]
canvas-backend = [
    "sdl3-sys",
    "bytemuck",
    "egui/bytemuck",
    "sdl3/unsafe_textures",
]
default = [
    "links",
    "glow-backend",
    "canvas-backend",
]
glow-backend = [
    "glow",
    "egui_glow",
]
links = ["webbrowser"]
sdl3-bundled = ["sdl3/build-from-source"]
sdl3-gfx = ["sdl3/gfx"]
sdl3-image = ["sdl3/image"]
sdl3-mixer = ["sdl3/mixer"]
sdl3-raw-window-handle = ["sdl3/raw-window-handle"]
sdl3-static-link = ["sdl3/static-link"]
sdl3-ttf = ["sdl3/ttf"]
sdl3-unsafe_textures = ["sdl3/unsafe_textures"]
sdl3-use-pkgconfig = ["sdl3/use-pkg-config"]
sdl3-use-vcpkg = ["sdl3/use-vcpkg"]
webbrowser = ["dep:webbrowser"]
wgpu-backend = [
    "egui-wgpu",
    "egui-wgpu/capture",
    "web-time",
    "sdl3/raw-window-handle",
]

[lib]
name = "egui_sdl3"
path = "src/lib.rs"

[[example]]
name = "canvas"
path = "examples/canvas.rs"
required-features = ["canvas-backend"]

[[example]]
name = "glow"
path = "examples/glow.rs"
required-features = ["glow-backend"]

[[example]]
name = "wgpu"
path = "examples/wgpu.rs"
required-features = ["wgpu-backend"]

[dependencies.bytemuck]
version = "1.23.2"
optional = true

[dependencies.egui]
version = "0.34.3"

[dependencies.egui-wgpu]
version = "0.34.3"
optional = true

[dependencies.egui_glow]
version = "0.34.3"
optional = true

[dependencies.glow]
version = "0.17.0"
optional = true

[dependencies.log]
version = "0.4.32"

[dependencies.sdl3]
version = "0.18.4"
default-features = false

[dependencies.sdl3-sys]
version = "0.6.6"
optional = true

[dependencies.web-time]
version = "1.1.0"
optional = true

[dependencies.webbrowser]
version = "1.2.1"
optional = true

[dev-dependencies.pollster]
version = "0.4.0"