[package]
edition = "2024"
rust-version = "1.87"
name = "malvin"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Non-interactive CLI agent, via Cursor ACP"
readme = "README.md"
keywords = ["malvin"]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/dsweet/malvin"
[lib]
name = "malvin"
path = "src/lib.rs"
[[bin]]
name = "malvin"
path = "src/main.rs"
[[test]]
name = "cli_parity"
path = "tests/cli_parity.rs"
[[test]]
name = "init_pre_commit"
path = "tests/init_pre_commit.rs"
[[test]]
name = "kiss_code_kpop_path"
path = "tests/kiss_code_kpop_path.rs"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.rand]
version = "0.8"
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.terminal_size]
version = "0.4"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"macros",
"process",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dev-dependencies]
[target.'cfg(target_os = "macos")'.dependencies.errno]
version = "0.3"
[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.libproc]
version = "0.14"
[lints.clippy]
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "deny"