[package]
edition = "2024"
rust-version = "1.89"
name = "bot-forge"
version = "1.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "bot-forge"
description = "Rust CLI for installing agent skills and developer tools from configurable forms."
homepage = "https://gitcode.com/xuanwu/bot-forge"
documentation = "https://gitcode.com/xuanwu/bot-forge/blob/main/docs/manual/README.md"
readme = "README.md"
keywords = [
"rust",
"cli",
"installer",
"tools",
"skills",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://gitcode.com/xuanwu/bot-forge"
[lib]
name = "bot_forge"
path = "src/lib.rs"
[[bin]]
name = "bot-forge"
path = "src/main.rs"
[[bin]]
name = "generate-config-artifacts"
path = "src/bin/generate-config-artifacts.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "macos_integration"
path = "tests/macos_integration.rs"
[[test]]
name = "output_contract"
path = "tests/output_contract.rs"
[[test]]
name = "planning_performance"
path = "tests/planning_performance.rs"
[[test]]
name = "terminal_integration"
path = "tests/terminal_integration.rs"
[[test]]
name = "windows_integration"
path = "tests/windows_integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.ctrlc]
version = "3"
[dependencies.flate2]
version = "1"
[dependencies.fs2]
version = "0.4"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"rustls",
]
default-features = false
[dependencies.schemars]
version = "1"
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.tar]
version = "0.4"
[dependencies.toml]
version = "1.1"
[dependencies.toml_edit]
version = "0.25.5"
[dependencies.unicode-width]
version = "0.2"
[dependencies.xz2]
version = "0.1"
features = ["static"]
[dependencies.zip]
version = "8"
features = ["deflate"]
default-features = false
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_JobObjects",
"Win32_System_SystemInformation",
"Win32_System_Threading",
]