[package]
edition = "2024"
rust-version = "1.85"
name = "augent"
version = "0.6.1"
authors = ["Anssi Syrjäsalo"]
build = false
exclude = [
".augent/",
".claude/",
".github/",
".opencode/",
"docs/implementation/",
".codespellrc",
".gitignore",
".pre-commit-config.yaml",
"Cross.toml",
"CLAUDE.md",
"pyproject.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lean package manager for various AI coding platforms"
documentation = "https://docs.rs/augent"
readme = "README.md"
keywords = [
"ai",
"agents",
"package-manager",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "AGPL-3.0"
repository = "https://github.com/asyrjasalo/augent"
[features]
default = []
[[bin]]
name = "augent"
path = "src/main.rs"
[[test]]
name = "bundle_discovery_tests"
path = "tests/bundle_discovery_tests.rs"
[[test]]
name = "bundle_metadata_tests"
path = "tests/bundle_metadata_tests.rs"
[[test]]
name = "bundle_spec_tests"
path = "tests/bundle_spec_tests.rs"
[[test]]
name = "clean_cache_tests"
path = "tests/clean_cache_tests.rs"
[[test]]
name = "cli_options_tests"
path = "tests/cli_options_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "doc_examples_tests"
path = "tests/doc_examples_tests.rs"
[[test]]
name = "dry_run_tests"
path = "tests/dry_run_tests.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "error_handling_tests"
path = "tests/error_handling_tests.rs"
[[test]]
name = "error_path_tests"
path = "tests/error_path_tests.rs"
[[test]]
name = "install_dependency_tests"
path = "tests/install_dependency_tests.rs"
[[test]]
name = "install_git_sources"
path = "tests/install_git_sources.rs"
[[test]]
name = "install_integration"
path = "tests/install_integration.rs"
[[test]]
name = "install_interactive_tests"
path = "tests/install_interactive_tests.rs"
[[test]]
name = "install_lockfile_tests"
path = "tests/install_lockfile_tests.rs"
[[test]]
name = "install_merge_tests"
path = "tests/install_merge_tests.rs"
[[test]]
name = "install_platform_tests"
path = "tests/install_platform_tests.rs"
[[test]]
name = "install_yaml_lifecycle_tests"
path = "tests/install_yaml_lifecycle_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "interactive_install_tests"
path = "tests/interactive_install_tests.rs"
[[test]]
name = "interactive_menu_tests"
path = "tests/interactive_menu_tests.rs"
[[test]]
name = "lazy_index_init_tests"
path = "tests/lazy_index_init_tests.rs"
[[test]]
name = "list_command_tests"
path = "tests/list_command_tests.rs"
[[test]]
name = "platform_specific_tests"
path = "tests/platform_specific_tests.rs"
[[test]]
name = "show_command_tests"
path = "tests/show_command_tests.rs"
[[test]]
name = "test_at_prefix_github_shorthand"
path = "tests/test_at_prefix_github_shorthand.rs"
[[test]]
name = "uninstall_dependencies_tests"
path = "tests/uninstall_dependencies_tests.rs"
[[test]]
name = "uninstall_file_tests"
path = "tests/uninstall_file_tests.rs"
[[test]]
name = "uninstall_interactive_tests"
path = "tests/uninstall_interactive_tests.rs"
[[test]]
name = "uninstall_multiplatform_tests"
path = "tests/uninstall_multiplatform_tests.rs"
[[test]]
name = "uninstall_safety_tests"
path = "tests/uninstall_safety_tests.rs"
[[test]]
name = "uninstall_scope_tests"
path = "tests/uninstall_scope_tests.rs"
[[test]]
name = "uninstall_simple"
path = "tests/uninstall_simple.rs"
[[test]]
name = "workspace_tests"
path = "tests/workspace_tests.rs"
[dependencies.blake3]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
"string",
]
[dependencies.clap_complete]
version = "4"
[dependencies.console]
version = "0.15"
[dependencies.dirs]
version = "5"
[dependencies.git2]
version = "0.19"
features = [
"ssh",
"https",
"vendored-openssl",
]
default-features = false
[dependencies.indicatif]
version = "0.17"
[dependencies.inquire]
version = "0.9"
[dependencies.miette]
version = "7"
features = []
[dependencies.path-clean]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.walkdir]
version = "2"
[dependencies.wax]
version = "0.6"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.expectrl]
version = "0.8"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serial_test]
version = "3"
[profile.release]
lto = true
codegen-units = 1
strip = true