[package]
edition = "2024"
rust-version = "1.85.0"
name = "bliss-shell"
version = "0.2.99"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bliss application shell"
homepage = "https://github.com/nixpt/arniko"
documentation = "https://docs.rs/bliss-shell"
readme = false
categories = ["gui"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nixpt/arniko"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
accessibility = [
"dep:accesskit",
"dep:accesskit_xplat",
"bliss-dom/accessibility",
]
clipboard = ["dep:arboard"]
data-uri = ["dep:data-url"]
default = [
"clipboard",
"file_dialog",
]
exoshell = []
file_dialog = ["dep:rfd"]
tracing = [
"dep:tracing",
"bliss-dom/tracing",
]
[lib]
name = "bliss_shell"
path = "src/lib.rs"
[dependencies.accesskit]
version = "0.24"
optional = true
[dependencies.accesskit_xplat]
version = "0.1"
optional = true
[dependencies.anyrender]
version = "0.7"
[dependencies.anyrender_vello]
version = "0.7"
[dependencies.bliss-dom]
version = "0.2.99"
[dependencies.bliss-paint]
version = "0.2.99"
[dependencies.bliss-traits]
version = "0.2.99"
[dependencies.data-url]
version = "0.3.1"
optional = true
[dependencies.futures-util]
version = "0.3.30"
[dependencies.keyboard-types]
version = "0.7"
[dependencies.tokio]
version = "1.0"
features = [
"net",
"io-util",
"rt",
]
optional = true
[dependencies.tracing]
version = "0.1.40"
optional = true
[dependencies.winit]
version = "=0.31.0-beta.2"
[target.'cfg(any(target_os = "windows",target_os = "macos",target_os = "linux",target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies.arboard]
version = "3.4.1"
optional = true
default-features = false
[target.'cfg(any(target_os = "windows",target_os = "macos",target_os = "linux",target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies.rfd]
version = "0.17.1"
features = ["xdg-portal"]
optional = true
default-features = false
[target.'cfg(target_os = "android")'.dependencies.android-activity]
version = "0.6.0"