[package]
edition = "2021"
rust-version = "1.75"
name = "roswire"
version = "0.1.1"
build = false
include = [
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh-CN.md",
"/docs/**",
"/roswire.png",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON-first RouterOS CLI bridge for AI agents and automation."
homepage = "https://github.com/AS153929/roswire"
readme = "README.md"
keywords = [
"routeros",
"cli",
"automation",
"networking",
"agent",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/AS153929/roswire"
[lib]
name = "roswire"
path = "src/lib.rs"
[[bin]]
name = "roswire"
path = "src/main.rs"
[[test]]
name = "cli_smoke"
path = "tests/cli_smoke.rs"
[[test]]
name = "config_rw"
path = "tests/config_rw.rs"
[[test]]
name = "introspect_static"
path = "tests/introspect_static.rs"
[[test]]
name = "keychain_smoke"
path = "tests/keychain_smoke.rs"
[[test]]
name = "transfer_dry_run"
path = "tests/transfer_dry_run.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.directories]
version = "6"
[dependencies.keyring]
version = "2"
[dependencies.md-5]
version = "0.10"
[dependencies.rand]
version = "0.8"
[dependencies.rustls]
version = "0.23"
features = [
"ring",
"std",
"tls12",
]
default-features = false
[dependencies.rustls-pki-types]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.ssh2]
version = "0.9"
features = ["vendored-openssl"]
[dependencies.thiserror]
version = "1"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dependencies.toml]
version = "0.8"
[dependencies.ureq]
version = "2"
features = ["tls"]
default-features = false
[dependencies.webpki-roots]
version = "0.26"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"