[package]
name = "mini_claw"
version = "0.1.9"
edition = "2021"
description = "Lightweight Rust agent platform for Raspberry Pi"
license = "MIT"
repository = "https://github.com/dominic-codespoti/pinchy"
homepage = "https://github.com/dominic-codespoti/pinchy"
keywords = ["agent", "ai", "raspberry-pi", "discord", "copilot"]
categories = ["command-line-utilities"]
build = "build.rs"
[[bin]]
name = "pinchy"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1"
reqwest = { version = "0.12", features = ["json", "rustls-tls", "stream"] }
futures-core = "0.3"
async-stream = "0.3"
tokio-stream = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] }
clap = { version = "4", features = ["derive"] }
serenity = { version = "0.12", features = ["client", "gateway", "model"] }
tokio-cron-scheduler = "0.13"
axum = { version = "0.7", features = ["ws", "json"] }
tower-http = { version = "0.6", features = ["fs"] }
thiserror = "2"
anyhow = "1"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
once_cell = "1"
copilot-sdk = { package = "copilot-sdk-supercharged", version = "1.0" }
keyring = "1"
dirs = "5"
uuid = { version = "1", features = ["v4"] }
dialoguer = "0.10"
rpassword = "7.4.0"
tiktoken-rs = "0.9"
rusqlite = { version = "0.31", features = ["bundled"] }
tokio-util = "0.7"
ring = "0.17"
base64 = "0.22"
libc = "0.2"
openssl = { version = "0.10", features = ["vendored"], optional = true }
playwright-rust = { version = "0.8", package = "playwright-rs", optional = true }
[features]
default = ["playwright"]
playwright = ["playwright-rust"]
vendored-openssl = ["openssl"]
[dev-dependencies]
tempfile = "3"
wiremock = "0.6"
tokio-tungstenite = "0.24"
futures-util = "0.3"