[package]
edition = "2021"
name = "mini_claw"
version = "0.1.7"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight Rust agent platform for Raspberry Pi"
homepage = "https://github.com/dominic-codespoti/pinchy"
readme = "README.md"
keywords = [
"agent",
"ai",
"raspberry-pi",
"discord",
"copilot",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/dominic-codespoti/pinchy"
[features]
default = ["playwright"]
playwright = ["playwright-rust"]
vendored-openssl = ["openssl"]
[lib]
name = "mini_claw"
path = "src/lib.rs"
[[bin]]
name = "pinchy"
path = "src/main.rs"
[[test]]
name = "api_endpoints"
path = "tests/api_endpoints.rs"
[[test]]
name = "config_load"
path = "tests/config_load.rs"
[[test]]
name = "copilot_function_calling"
path = "tests/copilot_function_calling.rs"
[[test]]
name = "enforcement_retry"
path = "tests/enforcement_retry.rs"
[[test]]
name = "gateway_basic"
path = "tests/gateway_basic.rs"
[[test]]
name = "gateway_publish"
path = "tests/gateway_publish.rs"
[[test]]
name = "integration_playwright"
path = "tests/integration_playwright.rs"
[[test]]
name = "provider_manager"
path = "tests/provider_manager.rs"
[[test]]
name = "scheduler_advanced"
path = "tests/scheduler_advanced.rs"
[[test]]
name = "scheduler_basic"
path = "tests/scheduler_basic.rs"
[[test]]
name = "session_store"
path = "tests/session_store.rs"
[[test]]
name = "skill_registry"
path = "tests/skill_registry.rs"
[[test]]
name = "skills_api"
path = "tests/skills_api.rs"
[[test]]
name = "slash_new_session"
path = "tests/slash_new_session.rs"
[[test]]
name = "slash_scheduler"
path = "tests/slash_scheduler.rs"
[[test]]
name = "tool_fence_extract"
path = "tests/tool_fence_extract.rs"
[[test]]
name = "tool_loop_integration"
path = "tests/tool_loop_integration.rs"
[[test]]
name = "tools"
path = "tests/tools.rs"
[[test]]
name = "tools_meta"
path = "tests/tools_meta.rs"
[[test]]
name = "tools_sandbox"
path = "tests/tools_sandbox.rs"
[[test]]
name = "ui_gateway"
path = "tests/ui_gateway.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = [
"ws",
"json",
]
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.copilot-sdk]
version = "1.0"
package = "copilot-sdk-supercharged"
[dependencies.dialoguer]
version = "0.10"
[dependencies.dirs]
version = "5"
[dependencies.futures-core]
version = "0.3"
[dependencies.keyring]
version = "1"
[dependencies.libc]
version = "0.2"
[dependencies.once_cell]
version = "1"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
optional = true
[dependencies.playwright-rust]
version = "0.8"
optional = true
package = "playwright-rs"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"stream",
]
[dependencies.ring]
version = "0.17"
[dependencies.rpassword]
version = "7.4.0"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.serenity]
version = "0.12"
features = [
"client",
"gateway",
"model",
]
[dependencies.thiserror]
version = "2"
[dependencies.tiktoken-rs]
version = "0.9"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-cron-scheduler]
version = "0.13"
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tower-http]
version = "0.6"
features = ["fs"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"registry",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-tungstenite]
version = "0.24"
[dev-dependencies.wiremock]
version = "0.6"