[package]
edition = "2021"
name = "bashrs-runtime"
version = "6.60.0"
authors = ["Pragmatic AI Labs"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded runtime library for Rash-generated shell scripts"
readme = "README.md"
keywords = [
"shell",
"bash",
"transpiler",
"rust",
"scripting",
]
categories = [
"command-line-utilities",
"development-tools",
"compilers",
]
license = "MIT"
repository = "https://github.com/paiml/bashrs"
[lib]
name = "bashrs_runtime"
path = "src/lib.rs"
[dependencies]
[build-dependencies.anyhow]
version = "1.0.98"
[lints.clippy]
checked_conversions = "warn"
dbg_macro = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
todo = "warn"
unimplemented = "warn"
[lints.clippy.expect_used]
level = "warn"
priority = 1
[lints.clippy.unwrap_used]
level = "deny"
priority = 1
[lints.rust]
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1