[package]
edition = "2024"
name = "bash-interop"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run bash under instrumentation and hear what it says: a session per run, a pipe and a task per shell, words a script speaks and answers it runs."
readme = "README.md"
keywords = [
"bash",
"shell",
"instrumentation",
"ipc",
"tracing",
]
categories = [
"development-tools",
"os::unix-apis",
"command-line-interface",
]
license = "MIT"
repository = "https://github.com/bashmgmt/bash-interop"
[lib]
name = "bash_interop"
path = "src/lib.rs"
[[test]]
name = "book"
path = "tests/book.rs"
[[test]]
name = "proofs"
path = "tests/proofs/main.rs"
[dependencies.bash-strings]
version = "0.1"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.31.1"
features = ["fs"]
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.tempfile]
version = "3.9"
[dependencies.tokio]
version = "1.53"
features = [
"rt",
"net",
"io-util",
"macros",
"sync",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1.53"
features = ["time"]