[package]
edition = "2024"
name = "distill-cli"
version = "0.2.0"
authors = ["Andrei Nicolae"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool that monitors AI agent sessions, identifies patterns, and proposes skills"
homepage = "https://github.com/nclandrei/distill"
readme = "README.md"
keywords = [
"ai",
"automation",
"agent",
"cli",
"workflow",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nclandrei/distill"
[package.metadata.dist]
dist = true
installers = [
"shell",
"homebrew",
]
targets = [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
]
tap = "nclandrei/homebrew-tap"
[[bin]]
name = "distill"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.image]
version = "0.25"
features = ["png"]
default-features = false
[dependencies.ratatui]
version = "0.30"
[dependencies.resvg]
version = "0.45"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[profile.dist]
lto = "thin"
inherits = "release"