shellfirm 0.3.7

`shellfirm` will intercept any risky patterns (default or defined by you) and prompt you a small challenge for double verification, kinda like a captcha for your terminal.
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 = "2021"
name = "shellfirm"
version = "0.3.7"
authors = ["Elad-Kaplan <kaplan.elad@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`shellfirm` will intercept any risky patterns (default or defined by you) and prompt you a small challenge for double verification, kinda like a captcha for your terminal."
homepage = "https://github.com/kaplanelad/shellfirm"
readme = "README.md"
license = "MIT"
repository = "https://github.com/kaplanelad/shellfirm"

[features]
ai = [
    "mcp",
    "llm",
]
all = [
    "cli",
    "llm",
    "mcp",
    "ai",
    "wrap",
]
cli = [
    "clap",
    "clap_complete",
    "clap_complete_nushell",
]
default = ["all"]
llm = ["reqwest"]
mcp = ["tokio"]
wrap = [
    "nix/signal",
    "nix/process",
    "nix/poll",
    "nix/fs",
    "nix/ioctl",
    "rustix",
    "portable-pty",
    "windows-sys",
]

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

[[bin]]
name = "shellfirm"
path = "src/bin/shellfirm.rs"
required-features = ["cli"]

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

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

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

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

[dependencies.clap]
version = "4.5"
features = ["cargo"]
optional = true

[dependencies.clap_complete]
version = "4.5"
optional = true

[dependencies.clap_complete_nushell]
version = "4.5"
optional = true

[dependencies.console]
version = "0.16"

[dependencies.dirs]
version = "6.0"

[dependencies.exitcode]
version = "1.1"

[dependencies.rand]
version = "0.10"

[dependencies.regex]
version = "1.12"

[dependencies.requestty]
version = "0.6"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
    "blocking",
]
optional = true

[dependencies.serde]
version = "1.0"

[dependencies.serde_derive]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_regex]
version = "1.1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "macros",
    "time",
    "io-std",
    "io-util",
]
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.uuid]
version = "1"
features = ["v4"]

[dependencies.wait-timeout]
version = "0.2"

[dev-dependencies.insta]
version = "1.46"
features = ["filters"]

[dev-dependencies.tree-fs]
version = "0.2"

[build-dependencies]

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(unix)".dependencies.nix]
version = "0.31"
features = ["term"]

[target."cfg(unix)".dependencies.rustix]
version = "1.0"
features = ["termios"]
optional = true

[target."cfg(windows)".dependencies.portable-pty]
version = "0.9"
optional = true

[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
    "Win32_System_Console",
    "Win32_Foundation",
]
optional = true