[package]
edition = "2024"
name = "llman"
version = "0.0.25"
authors = ["L8ng <straydragonl@foxmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "llman"
description = "A tool for managing LLM application rules(prompts) ..."
readme = "README.md"
license = "MIT"
repository = "https://github.com/StrayDragon/llman"
[features]
agents-ai = []
[lib]
name = "llman"
path = "src/lib.rs"
[[bin]]
name = "llman"
path = "src/main.rs"
[[bin]]
name = "llman-fake-acp-agent"
path = "src/bin/llman-fake-acp-agent.rs"
[[test]]
name = "agents_codegen_tests"
path = "tests/agents_codegen_tests.rs"
[[test]]
name = "agents_new_tests"
path = "tests/agents_new_tests.rs"
[[test]]
name = "claude_code_account_edit_tests"
path = "tests/claude_code_account_edit_tests.rs"
[[test]]
name = "claude_code_account_env_tests"
path = "tests/claude_code_account_env_tests.rs"
[[test]]
name = "claude_code_forward_args_tests"
path = "tests/claude_code_forward_args_tests.rs"
[[test]]
name = "claude_code_stats_tests"
path = "tests/claude_code_stats_tests.rs"
[[test]]
name = "codex_stats_tests"
path = "tests/codex_stats_tests.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "configuration_tests"
path = "tests/configuration_tests.rs"
[[test]]
name = "cursor_stats_tests"
path = "tests/cursor_stats_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "path_validation_tests"
path = "tests/path_validation_tests.rs"
[[test]]
name = "performance_tests"
path = "tests/performance_tests.rs"
[[test]]
name = "print_config_dir_path_tests"
path = "tests/print_config_dir_path_tests.rs"
[[test]]
name = "processor_tests"
path = "tests/processor_tests.rs"
[[test]]
name = "prompts_orchestrator_tests"
path = "tests/prompts_orchestrator_tests.rs"
[[test]]
name = "rm_empty_dirs_tests"
path = "tests/rm_empty_dirs_tests.rs"
[[test]]
name = "sdd_eval_tests"
path = "tests/sdd_eval_tests.rs"
[[test]]
name = "sdd_integration_tests"
path = "tests/sdd_integration_tests.rs"
[[test]]
name = "skills_integration_tests"
path = "tests/skills_integration_tests.rs"
[[test]]
name = "skills_targets_sync_tests"
path = "tests/skills_targets_sync_tests.rs"
[[test]]
name = "tool_tests"
path = "tests/tool_tests.rs"
[[test]]
name = "tree_sitter_tests"
path = "tests/tree_sitter_tests.rs"
[dependencies.adk-core]
version = "0.3.2"
[dependencies.adk-model]
version = "0.3.2"
features = ["openai"]
default-features = false
[dependencies.agent-client-protocol]
version = "0.9.4"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.clap]
version = "4.5.60"
features = [
"deprecated",
"env",
"unicode",
"wrap_help",
"string",
"cargo",
"derive",
]
[dependencies.clap_complete]
version = "4.5.66"
[dependencies.comfy-table]
version = "7.2.2"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.diesel]
version = "2.3.6"
features = [
"sqlite",
"chrono",
]
[dependencies.futures]
version = "0.3.32"
[dependencies.glob]
version = "0.3.3"
[dependencies.ignore]
version = "0.4.25"
[dependencies.indexmap]
version = "2.13.0"
features = ["serde"]
[dependencies.inquire]
version = "0.9.4"
features = ["editor"]
[dependencies.ison-rs]
version = "1.0.1"
[dependencies.jsonschema]
version = "0.44.0"
[dependencies.llm_json]
version = "1.0.2"
[dependencies.minijinja]
version = "2.16.0"
[dependencies.ratatui]
version = "0.30.0"
[dependencies.regex]
version = "1.12.3"
[dependencies.reqwest]
version = "0.13.2"
features = [
"blocking",
"json",
"rustls",
]
default-features = false
[dependencies.rust-i18n]
version = "3.1.5"
[dependencies.schemars]
version = "1.2.1"
features = [
"derive",
"indexmap2",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_toon_format]
version = "0.1.2"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.sevenz-rust2]
version = "0.20.2"
[dependencies.sha2]
version = "0.10.9"
[dependencies.tempfile]
version = "3.26.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = [
"rt-multi-thread",
"time",
]
[dependencies.tokio-util]
version = "0.7.18"
features = ["compat"]
[dependencies.toml]
version = "1.0.3"
[dependencies.tree-sitter]
version = "0.26.6"
[dependencies.tree-sitter-go]
version = "0.25.0"
[dependencies.tree-sitter-highlight]
version = "0.26.6"
[dependencies.tree-sitter-javascript]
version = "0.25.0"
[dependencies.tree-sitter-python]
version = "0.25.0"
[dependencies.tree-sitter-rust]
version = "0.24.0"
[dependencies.tree-sitter-typescript]
version = "0.23.2"
[dependencies.yamlpatch]
version = "0.13.0"
[dependencies.yamlpath]
version = "0.34.0"
[dev-dependencies.expectrl]
version = "0.8.0"
[profile.dev]
debug = 1
[profile.dev.package."*"]
debug = 0
[profile.test]
debug = 1
[profile.test.package."*"]
debug = 0