[package]
edition = "2024"
rust-version = "1.92"
name = "truce-iced"
version = "2.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Iced GUI backend for truce plugins"
homepage = "https://github.com/truce-audio/truce"
readme = "README.md"
license = "LicenseRef-TruceLicense-1.0"
repository = "https://github.com/truce-audio/truce"
[features]
image = ["iced_widget/image"]
[lib]
name = "truce_iced"
path = "src/lib.rs"
[dependencies.iced_core]
version = "0.14"
[dependencies.iced_futures]
version = "0.14"
features = ["thread-pool"]
[dependencies.iced_graphics]
version = "0.14"
[dependencies.iced_renderer]
version = "0.14"
features = [
"wgpu",
"wgpu-bare",
]
[dependencies.iced_runtime]
version = "0.14"
[dependencies.iced_wgpu]
version = "0.14"
[dependencies.iced_widget]
version = "0.14"
features = ["canvas"]
[dependencies.log]
version = "0.4"
[dependencies.pollster]
version = "0.4"
[dependencies.raw-window-handle]
version = "0.5"
[dependencies.truce-core]
version = "2.0.0"
[dependencies.truce-gui]
version = "2.0.0"
default-features = false
[dependencies.truce-params]
version = "2.0.0"
[dependencies.ttf-parser]
version = "0.25"
[target.'cfg(not(target_os = "ios"))'.dependencies.baseview]
version = "0.1.1-truce.12"
package = "baseview-truce"
[target.'cfg(not(target_os = "ios"))'.dependencies.keyboard-types]
version = "0.7"
[target.'cfg(target_os = "ios")'.dependencies.objc2]
version = "0.6"
[target.'cfg(target_os = "ios")'.dependencies.objc2-foundation]
version = "0.3"
features = [
"NSString",
"NSGeometry",
]
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("cargo-clippy"))']