[package]
edition = "2024"
name = "wonok"
version = "0.1.1"
authors = ["Leandro Lisboa Penz <lpenz@lpenz.org>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Atomically write the output of a command to a file depending on its exit value"
homepage = "https://github.com/lpenz/wonok"
readme = "README.md"
keywords = ["command-line"]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/lpenz/wonok"
[package.metadata.deb]
section = "utils"
extended-description = """
Atomically write the output of a command to a file depending on its exit value
"""
assets = [
[
"target/release/wonok.1",
"usr/share/man/man1/",
"644",
],
[
"target/release/wonok",
"usr/bin/",
"755",
],
[
"LICENSE",
"usr/share/doc/wonok/",
"644",
],
[
"AUTHORS",
"usr/share/doc/wonok/",
"644",
],
[
"README.md",
"usr/share/doc/wonok/",
"644",
],
[
"target/release/wonok.bash",
"/usr/share/bash-completion/completions/",
"644",
],
[
"target/release/_wonok",
"/usr/share/zsh/site-functions/",
"644",
],
[
"target/release/wonok.fish",
"/usr/share/fish/vendor_completions.d/",
"644",
],
]
[lib]
name = "wonok"
path = "src/lib.rs"
[[bin]]
name = "wonok"
path = "src/bin/wonok.rs"
[dependencies.atomic-write-file]
version = "0.3.0"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.tracing]
version = "0.1.44"
features = ["log"]
[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"env-filter",
"tracing-log",
]
[build-dependencies.clap]
version = "4.6.1"
features = ["derive"]
[build-dependencies.clap2man]
version = "0.1.1"
[build-dependencies.clap_complete]
version = "4.6.3"
[build-dependencies.color-eyre]
version = "0.6.5"
[build-dependencies.man]
version = "0.3.0"