[package]
edition = "2024"
rust-version = "1.92"
name = "truce-iced"
version = "0.49.21"
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 = "Apache-2.0 OR MIT"
repository = "https://github.com/truce-audio/truce"
resolver = "2"
[lib]
name = "truce_iced"
path = "src/lib.rs"
[dependencies.iced]
version = "0.14"
features = [
"canvas",
"wgpu",
"thread-pool",
]
default-features = false
[dependencies.iced_graphics]
version = "0.14"
[dependencies.iced_runtime]
version = "0.14"
[dependencies.log]
version = "0.4"
[dependencies.raw-window-handle]
version = "0.5"
[dependencies.truce-core]
version = "0.49.21"
[dependencies.truce-gui]
version = "0.49.21"
default-features = false
[dependencies.truce-params]
version = "0.49.21"
[target.'cfg(not(target_os = "ios"))'.dependencies.baseview]
version = "0.1.1-truce.4"
package = "baseview-truce"
[target.'cfg(not(target_os = "ios"))'.dependencies.iced_wgpu]
version = "0.14"
[target.'cfg(not(target_os = "ios"))'.dependencies.pollster]
version = "0.4"
[target.'cfg(target_os = "ios")'.dependencies.objc2]
version = "0.6"
[target.'cfg(target_os = "ios")'.dependencies.objc2-foundation]
version = "0.3"
features = [
"NSString",
"NSGeometry",
]
[target.'cfg(target_os = "linux")'.dependencies.iced]
version = "0.14"
features = [
"x11",
"wayland",
]
default-features = false
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("cargo-clippy"))']