augmented_iced_baseview 0.1.0

baseview runtime for iced, published fork of https://github.com/BillyDM/iced_baseview for augmented-audio
[package]
name = "augmented_iced_baseview"
description = "baseview runtime for iced, published fork of https://github.com/BillyDM/iced_baseview for augmented-audio"
version = "0.1.0"
authors = [
  "Billy Messenger <BillyDM@protonmail.com>",
  "Robbert van der Helm <mail@robbertvanderhelm.nl>",
  "Joakim FrostegÄrd <joakim.frostegard@gmail.com>",
]
edition = "2021"
license = "MIT"
repository = "https://github.com/BillyDM/iced_baseview"
documentation = "https://docs.rs/iced_baseview"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
resolver = "2"

[features]
default = ["wgpu"]
# Enables the `iced_wgpu` renderer. Cannot be used together with the `glow`
# feature.
wgpu = ["iced_wgpu"]
# Enables the `iced_glow` renderer. Cannot be used together with the `wgpu`
# feature.
glow = ["iced_glow", "baseview/opengl"]
# Enables a debug view in native platforms (press F12)
debug = ["iced_native/debug"]
# Enables the `Image` widget
image = ["iced_wgpu?/image", "iced_glow?/image"]
# Enables the `Svg` widget
svg = ["iced_wgpu?/svg", "iced_glow?/svg"]
# Enables the `Canvas` widget
canvas = ["iced_wgpu?/canvas", "iced_glow?/canvas"]
# Enables the `QRCode` widget
qr_code = ["iced_wgpu?/qr_code", "iced_glow?/qr_code"]
# Enables using system fonts
default_system_font = ["iced_wgpu?/default_system_font", "iced_glow?/default_system_font"]
# Enables advanced color conversion via `palette`
palette = ["iced_core/palette"]
# Enables `tokio` as the `executor::Default` on native platforms
tokio = ["iced_futures/tokio"]
# Enables `async-std` as the `executor::Default` on native platforms
async-std = ["iced_futures/async-std"]
# Enables `smol` as the `executor::Default` on native platforms
smol = ["iced_futures/smol"]

[dependencies]
baseview = { version = "0", path = "../baseview", package = "augmented_baseview" }
cfg-if = "1"
copypasta = "0.8"
iced_core = "0.8"
iced_futures = "0.6"
iced_glow = { version = "0.7", optional = true }
iced_graphics = "0.7"
iced_native = "0.9"
iced_wgpu = { version = "0.9", optional = true }
keyboard-types = { version = "0.6", default-features = false }
log = "0.4"
raw-window-handle = "0.4"
rwh05 = { package = "raw-window-handle", version = "0.5" }
thiserror = "1.0"