[package]
edition = "2024"
name = "oxdock-ssh-plugin"
version = "0.17.0-alpha"
authors = ["Jeremy Harris <jeremy.harris@zenosmosis.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ephemeral user-space SSH server and client for OxDock scripts, bridged to stdio pipelines through the Engine facade."
readme = "README.md"
keywords = [
"oxdock",
"ssh",
"dsl",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/jzombie/rust-oxdock"
resolver = "2"
[lib]
name = "oxdock_ssh_plugin"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.bytes]
version = "1"
[dependencies.oxdock-core]
version = "0.17.0-alpha"
[dependencies.oxdock-fs]
version = "0.17.0-alpha"
[dependencies.oxdock-func-macro]
version = "0.17.0-alpha"
[dependencies.oxdock-net-plugin]
version = "0.17.0-alpha"
[dependencies.oxdock-pipe]
version = "0.17.0-alpha"
[dependencies.oxdock-process]
version = "0.17.0-alpha"
[dependencies.portable-pty]
version = "0.9"
[dependencies.rand]
version = "0.10"
[dependencies.russh]
version = "0.63.3"
features = ["aws-lc-rs"]
default-features = false
[dependencies.tokio]
version = "1"
features = [
"rt",
"net",
"sync",
"time",
"io-util",
]
[dev-dependencies.indoc]
version = "2.0.7"
[dev-dependencies.oxdock-sys-test-utils]
version = "0.17.0-alpha"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"net",
"sync",
"time",
"io-util",
]
[lints.clippy]
disallowed_macros = "deny"
disallowed_methods = "deny"
disallowed_types = "deny"