iced-yoda/Cargo.toml

87 lines
2.2 KiB
TOML
Raw Normal View History

2019-09-14 19:16:06 +02:00
[package]
name = "iced"
2023-04-13 08:31:17 +02:00
version = "0.9.0"
2019-09-14 19:16:06 +02:00
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2022-02-09 17:53:35 +07:00
edition = "2021"
2019-09-20 19:15:31 +02:00
description = "A cross-platform GUI library inspired by Elm"
2019-09-14 19:16:06 +02:00
license = "MIT"
repository = "https://github.com/iced-rs/iced"
2019-09-14 19:16:06 +02:00
documentation = "https://docs.rs/iced"
readme = "README.md"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
[features]
default = ["wgpu"]
# Enable the `wgpu` GPU-accelerated renderer backend
wgpu = ["iced_renderer/wgpu"]
# Enables the `Image` widget
image = ["iced_widget/image", "image_rs"]
# Enables the `Svg` widget
svg = ["iced_widget/svg"]
# Enables the `Canvas` widget
canvas = ["iced_widget/canvas"]
2020-11-20 10:13:58 +01:00
# Enables the `QRCode` widget
qr_code = ["iced_widget/qr_code"]
# Enables lazy widgets
lazy = ["iced_widget/lazy"]
# Enables a debug view in native platforms (press F12)
debug = ["iced_winit/debug"]
# 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"]
2021-01-13 01:48:35 +01:00
# Enables `smol` as the `executor::Default` on native platforms
smol = ["iced_futures/smol"]
# Enables advanced color conversion via `palette`
2020-03-31 16:44:02 -05:00
palette = ["iced_core/palette"]
# Enables querying system information
system = ["iced_winit/system"]
# Enables the advanced module
advanced = []
2019-09-14 19:16:06 +02:00
[badges]
maintenance = { status = "actively-developed" }
2019-09-10 19:41:49 +02:00
[workspace]
members = [
2019-09-20 19:15:31 +02:00
"core",
"futures",
2020-05-19 17:15:44 +02:00
"graphics",
2023-03-05 06:35:20 +01:00
"runtime",
"renderer",
"style",
"tiny_skia",
"wgpu",
"widget",
"winit",
2022-11-18 14:16:02 -08:00
"examples/*",
2019-09-10 19:41:49 +02:00
]
2019-10-03 00:01:45 +02:00
[dependencies]
2023-04-13 08:31:17 +02:00
iced_core = { version = "0.9", path = "core" }
2023-02-18 12:04:40 +01:00
iced_futures = { version = "0.6", path = "futures" }
iced_renderer = { version = "0.1", path = "renderer" }
iced_widget = { version = "0.1", path = "widget" }
2023-04-13 08:31:17 +02:00
iced_winit = { version = "0.9", path = "winit", features = ["application"] }
thiserror = "1"
[dependencies.image_rs]
2022-11-05 03:47:08 +01:00
version = "0.24"
package = "image"
optional = true
2020-04-05 04:52:03 +02:00
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
features = ["image", "svg", "canvas", "qr_code"]
2022-05-20 10:34:25 +02:00
[profile.release-opt]
inherits = "release"
codegen-units = 1
debug = false
lto = true
incremental = false
opt-level = 3
overflow-checks = false
strip = "debuginfo"