We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
37 lines
829 B
TOML
37 lines
829 B
TOML
[package]
|
|
name = "iced_widget"
|
|
description = "The built-in widgets for iced"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
categories.workspace = true
|
|
keywords.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|
|
|
|
[features]
|
|
lazy = ["ouroboros"]
|
|
image = ["iced_renderer/image"]
|
|
svg = ["iced_renderer/svg"]
|
|
canvas = ["iced_renderer/geometry"]
|
|
qr_code = ["canvas", "qrcode"]
|
|
|
|
[dependencies]
|
|
iced_renderer.workspace = true
|
|
iced_runtime.workspace = true
|
|
iced_style.workspace = true
|
|
|
|
num-traits.workspace = true
|
|
thiserror.workspace = true
|
|
unicode-segmentation.workspace = true
|
|
|
|
ouroboros.workspace = true
|
|
ouroboros.optional = true
|
|
|
|
qrcode.workspace = true
|
|
qrcode.optional = true
|