vbash 0.1.0

A virtual bash environment for AI agents
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.85"
name = "vbash"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A virtual bash environment for AI agents"
readme = "README.md"
keywords = [
    "bash",
    "shell",
    "sandbox",
    "interpreter",
]
license = "MIT"
repository = "https://github.com/iruizsalinas/vbash"

[features]
default = []
network = ["dep:ureq"]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
]
default-features = false

[dependencies.digest]
version = "0.10"

[dependencies.filetime]
version = "0.2"

[dependencies.flate2]
version = "1"
features = ["rust_backend"]
default-features = false

[dependencies.md-5]
version = "0.10"

[dependencies.regex]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.ureq]
version = "3"
optional = true

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

[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
many_single_char_names = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
too_many_lines = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1