[package]
edition = "2021"
rust-version = "1.85"
name = "execkit"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stateful, structured, safe shell sessions for AI agents on real infrastructure."
homepage = "https://github.com/blinkingbit-oss/execkit"
readme = "README.md"
keywords = [
"ai",
"agent",
"shell",
"pty",
"ssh",
]
categories = [
"development-tools",
"command-line-interface",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/blinkingbit-oss/execkit"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["ssh"]
ssh = [
"dep:russh",
"dep:tokio",
]
[lib]
name = "execkit"
path = "src/lib.rs"
[[example]]
name = "local"
path = "examples/local.rs"
[[example]]
name = "ssh"
path = "examples/ssh.rs"
required-features = ["ssh"]
[[test]]
name = "local_session"
path = "tests/local_session.rs"
[[test]]
name = "ssh_smoke"
path = "tests/ssh_smoke.rs"
[dependencies.portable-pty]
version = "0.8"
[dependencies.regex]
version = "1"
[dependencies.russh]
version = "0.61"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"sync",
"io-util",
"net",
"time",
]
optional = true