[package]
edition = "2024"
name = "reef-shell"
version = "0.3.0"
build = false
exclude = [
"fish/",
"tests/",
"PKGBUILD",
".SRCINFO",
"pkg/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bash compatibility layer for fish shell"
homepage = "https://github.com/ZStud/reef"
readme = "README.md"
keywords = [
"fish",
"bash",
"shell",
"translator",
"compatibility",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/ZStud/reef"
[lib]
name = "reef"
path = "src/lib.rs"
[[bin]]
name = "reef"
path = "src/main.rs"
[dependencies]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true