hh-cli 0.1.0

A terminal-based coding agent runtime
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "hh-cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal-based coding agent runtime"
readme = "README.md"
license = "MIT"
repository = "https://github.com/liznear/hh"

[lib]
name = "hh_cli"
path = "src/lib.rs"

[[bin]]
name = "hh"
path = "src/main.rs"

[[test]]
name = "agent_loop_tests"
path = "tests/agent_loop_tests.rs"

[[test]]
name = "permission_tests"
path = "tests/permission_tests.rs"

[[test]]
name = "provider_tests"
path = "tests/provider_tests.rs"

[[test]]
name = "render_tests"
path = "tests/render_tests.rs"

[[test]]
name = "session_tests"
path = "tests/session_tests.rs"

[[test]]
name = "tool_tests"
path = "tests/tool_tests.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.arboard]
version = "3.6"
features = ["wayland-data-control"]

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.crossterm]
version = "0.28"

[dependencies.dirs]
version = "6.0"

[dependencies.futures]
version = "0.3"

[dependencies.glob]
version = "0.3"

[dependencies.png]
version = "0.18"

[dependencies.ratatui]
version = "0.29"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
]
default-features = false

[dependencies.scraper]
version = "0.22"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.similar]
version = "2.7"

[dependencies.syntect]
version = "5.3"
features = ["default-fancy"]
default-features = false

[dependencies.syntect-tui]
version = "3.0"

[dependencies.tokio]
version = "1.46"
features = [
    "macros",
    "rt-multi-thread",
    "process",
    "time",
    "io-util",
    "sync",
]

[dependencies.toml]
version = "0.8"

[dependencies.urlencoding]
version = "2.1"

[dependencies.uuid]
version = "1.11"
features = [
    "v4",
    "v7",
    "serde",
]

[dev-dependencies.tempfile]
version = "3.15"