[package]
edition = "2021"
name = "opener"
version = "0.8.4"
authors = ["Brian Bowman <seeker14491@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open a file or link using the system default program."
readme = "README.md"
keywords = [
"open",
"default",
"launcher",
"browser",
]
categories = ["os"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Seeker14491/opener"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "passively-maintained"
[features]
reveal = [
"dep:url",
"dep:zbus",
"windows-sys/Win32_System_Com",
"windows-sys/Win32_UI_Shell_Common",
]
[lib]
name = "opener"
path = "src/lib.rs"
[target.'cfg(target_os = "linux")'.dependencies.bstr]
version = "1"
[target.'cfg(target_os = "linux")'.dependencies.url]
version = "2"
optional = true
[target.'cfg(target_os = "linux")'.dependencies.zbus]
version = "5"
features = ["url"]
optional = true
[target."cfg(windows)".dependencies.normpath]
version = "1"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]