[package]
edition = "2024"
rust-version = "1.88.0"
name = "shellfn"
version = "0.2.1"
authors = ["Marcin Sas-Szymanski <synek317@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attribute-like proc macro which reduces the amount of code required to call shell commands and parse the results"
documentation = "https://docs.rs/shellfn"
readme = "README.md"
keywords = [
"shell",
"command",
"bash",
]
categories = [
"command-line-interface",
"os",
]
license = "MIT"
repository = "https://github.com/synek317/shellfn"
[lib]
name = "shellfn"
path = "src/lib.rs"
doctest = false
[[example]]
name = "calendar"
path = "examples/calendar.rs"
[[example]]
name = "git"
path = "examples/git.rs"
[[example]]
name = "python"
path = "examples/python.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.shellfn-attribute]
version = "0.2.1"
[dependencies.shellfn-core]
version = "0.2.1"