file-handle 0.1.1

A humble library to show files in the system manager, open terminals, or move items to the trash.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.90"
name = "file-handle"
version = "0.1.1"
authors = ["nabbisen <nabbisen@scqr.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A humble library to show files in the system manager, open terminals, or move items to the trash."
readme = "README.md"
keywords = [
    "filesystem",
    "file",
]
categories = ["filesystem"]
license = "Apache-2.0"
repository = "https://github.com/nabbisen/file-handle-rs"

[features]
all = [
    "show",
    "terminal",
    "trash",
]
default = []
show = [
    "dep:url",
    "dep:zbus",
]
terminal = []
trash = ["dep:trash_lib"]

[lib]
name = "file_handle"
path = "src/lib.rs"

[[example]]
name = "smoke_test"
path = "examples/smoke_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.thiserror]
version = "2"

[dependencies.trash_lib]
version = "5"
optional = true
package = "trash"

[dependencies.url]
version = "2"
optional = true

[dependencies.zbus]
version = "5"
features = [
    "blocking-api",
    "async-io",
]
optional = true
default-features = false

[dev-dependencies.tempfile]
version = "3"