[package]
edition = "2021"
rust-version = "1.91"
name = "selfware"
version = "0.2.2"
authors = ["Trebuchet Network"]
build = false
exclude = [
"system_tests/",
"experiments/",
"k8s/",
"docs/",
"screenshots/",
"sab_results/",
"kimi_docs/",
"demos/",
"selfware.toml",
"selfware-eval.toml",
"selfware-extended-test.toml",
"selfware-longrun.toml",
"*.zip",
"*.profraw",
"*.html",
"*.info",
"*.bak",
".evolution-log.jsonl",
"COMPREHENSIVE_PRODUCTION_READINESS_REVIEW.md",
"PRODUCTION_READINESS_REVIEW.md",
"SECOND_OPINION_REVIEW.md",
"EVAL_REPORT.md",
"COMPREHENSIVE_PROJECT_REVIEW.md",
"PROJECT_REVIEW_2026_03_06.md",
"GEMINI_RECOMMENDATIONS.md",
"QUICK_FIXES.md",
"ARCHITECTURE_SUMMARY.md",
"Dockerfile",
".dockerignore",
".tarpaulin.toml",
"deny.toml",
".pre-commit-config.yaml",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Your personal AI workshop — software you own, software that lasts"
homepage = "https://selfware.design"
documentation = "https://docs.rs/selfware"
readme = "README.md"
keywords = [
"ai",
"agent",
"local-first",
"cli",
"automation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/architehc/selfware"
[features]
cache = []
default = [
"tui",
"workflows",
"resilience",
"execution-modes",
"cache",
"log-analysis",
"tokens",
"self-improvement",
]
execution-modes = []
extras = [
"tui",
"workflows",
"resilience",
"execution-modes",
"cache",
"log-analysis",
"tokens",
"self-improvement",
"hot-reload",
"vlm-bench",
]
hot-reload = []
integration = []
log-analysis = []
resilience = []
self-improvement = []
system-tests = []
tokens = []
tui = []
vendored-openssl = ["dep:openssl"]
vlm-bench = []
workflows = []
[lib]
name = "selfware"
path = "src/lib.rs"
[[bin]]
name = "selfware"
path = "src/main.rs"
[[bin]]
name = "vlm_bench_run"
path = "src/bin/vlm_bench_run.rs"
required-features = ["vlm-bench"]
[[bin]]
name = "vlm_gen_fixtures"
path = "src/bin/vlm_gen_fixtures.rs"
required-features = ["vlm-bench"]
[[example]]
name = "basic_chat"
path = "examples/basic_chat.rs"
[[example]]
name = "custom_config"
path = "examples/custom_config.rs"
[[example]]
name = "multi_agent"
path = "examples/multi_agent.rs"
[[example]]
name = "run_task"
path = "examples/run_task.rs"
[[example]]
name = "swarm_ui_demo"
path = "examples/swarm_ui_demo.rs"
[[test]]
name = "compilation_sandbox_test"
path = "tests/compilation_sandbox_test.rs"
[[test]]
name = "e2e_phase5_test"
path = "tests/e2e_phase5_test.rs"
[[test]]
name = "e2e_system_test"
path = "tests/e2e_system_test.rs"
[[test]]
name = "e2e_tools_test"
path = "tests/e2e_tools_test.rs"
[[test]]
name = "evolution_integration_test"
path = "tests/evolution_integration_test.rs"
[[test]]
name = "integration"
path = "tests/integration/mod.rs"
required-features = ["integration"]
[[test]]
name = "prop_safety"
path = "tests/prop_safety.rs"
[[test]]
name = "prop_tool_parser"
path = "tests/prop_tool_parser.rs"
[[test]]
name = "resource_governance_test"
path = "tests/resource_governance_test.rs"
[[test]]
name = "rsi_integration_test"
path = "tests/rsi_integration_test.rs"
[[test]]
name = "unit"
path = "tests/unit/mod.rs"
[[bench]]
name = "token_processing"
path = "benches/token_processing.rs"
harness = false
[[bench]]
name = "vlm_benchmark"
path = "benches/vlm_benchmark.rs"
harness = false
required-features = ["vlm-bench"]
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.bincode]
version = "2.0"
features = ["serde"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.colored]
version = "3.1"
[dependencies.crossterm]
version = "0.29"
[dependencies.ctrlc]
version = "3"
[dependencies.dirs]
version = "6.0"
[dependencies.futures]
version = "0.3"
[dependencies.fuzzy-matcher]
version = "0.3"
[dependencies.git2]
version = "0.20"
[dependencies.glob]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.hnsw_rs]
version = "0.3"
[dependencies.keyring]
version = "3.2"
[dependencies.libloading]
version = "0.9.0"
[dependencies.lru]
version = "0.16.3"
[dependencies.metrics]
version = "0.21.0"
[dependencies.metrics-exporter-prometheus]
version = "0.12.1"
[dependencies.nu-ansi-term]
version = "0.50"
[dependencies.nucleo]
version = "0.5"
[dependencies.nvml-wrapper]
version = "0.12.0"
[dependencies.once_cell]
version = "1.19"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
optional = true
[dependencies.opentelemetry]
version = "0.21.0"
[dependencies.opentelemetry-otlp]
version = "0.14.0"
[dependencies.opentelemetry_sdk]
version = "0.21.0"
features = ["rt-tokio"]
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.pbkdf2]
version = "0.12"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.rand]
version = "0.9"
[dependencies.ratatui]
version = "0.30"
[dependencies.reedline]
version = "0.46"
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
"blocking",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.shlex]
version = "1"
[dependencies.similar]
version = "2.4"
[dependencies.syntect]
version = "5.2"
[dependencies.sysinfo]
version = "0.38.3"
[dependencies.tempfile]
version = "3.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.tiktoken-rs]
version = "0.9"
[dependencies.tokenizers]
version = "0.22.2"
features = [
"hf-hub",
"http",
]
[dependencies.tokio]
version = "1.43"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"io-util",
"process",
"signal",
]
[dependencies.toml]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2.4"
[dependencies.tracing-opentelemetry]
version = "0.22.0"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.unicode-width]
version = "0.2"
[dependencies.url]
version = "2"
[dependencies.uuid]
version = "1.6"
features = ["v4"]
[dependencies.walkdir]
version = "2.4"
[dependencies.whoami]
version = "2.1"
[dependencies.xcap]
version = "0.3"
[dependencies.zeroize]
version = "1.8.2"
[dependencies.zstd]
version = "0.13.3"
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tokio-test]
version = "0.4"
[target."cfg(unix)".dependencies.nix]
version = "0.31"
features = ["signal"]