[package]
edition = "2021"
name = "rskim"
version = "2.2.0"
authors = ["Skim Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The most intelligent context optimization engine for coding agents. Code-aware AST parsing, command rewriting, output compression."
readme = "README.md"
license = "MIT"
repository = "https://github.com/dean0x/skim"
[[bin]]
name = "skim"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "cli_agents"
path = "tests/cli_agents.rs"
[[test]]
name = "cli_build"
path = "tests/cli_build.rs"
[[test]]
name = "cli_cache"
path = "tests/cli_cache.rs"
[[test]]
name = "cli_completions"
path = "tests/cli_completions.rs"
[[test]]
name = "cli_diff"
path = "tests/cli_diff.rs"
[[test]]
name = "cli_directory"
path = "tests/cli_directory.rs"
[[test]]
name = "cli_discover"
path = "tests/cli_discover.rs"
[[test]]
name = "cli_e2e_build_parsers"
path = "tests/cli_e2e_build_parsers.rs"
[[test]]
name = "cli_e2e_exit_codes"
path = "tests/cli_e2e_exit_codes.rs"
[[test]]
name = "cli_e2e_guardrail"
path = "tests/cli_e2e_guardrail.rs"
[[test]]
name = "cli_e2e_lint_parsers"
path = "tests/cli_e2e_lint_parsers.rs"
[[test]]
name = "cli_e2e_pkg_parsers"
path = "tests/cli_e2e_pkg_parsers.rs"
[[test]]
name = "cli_e2e_rewrite"
path = "tests/cli_e2e_rewrite.rs"
[[test]]
name = "cli_e2e_test_parsers"
path = "tests/cli_e2e_test_parsers.rs"
[[test]]
name = "cli_git"
path = "tests/cli_git.rs"
[[test]]
name = "cli_glob"
path = "tests/cli_glob.rs"
[[test]]
name = "cli_guardrail"
path = "tests/cli_guardrail.rs"
[[test]]
name = "cli_init"
path = "tests/cli_init.rs"
[[test]]
name = "cli_integrity"
path = "tests/cli_integrity.rs"
[[test]]
name = "cli_last_lines"
path = "tests/cli_last_lines.rs"
[[test]]
name = "cli_learn"
path = "tests/cli_learn.rs"
[[test]]
name = "cli_markdown"
path = "tests/cli_markdown.rs"
[[test]]
name = "cli_max_lines"
path = "tests/cli_max_lines.rs"
[[test]]
name = "cli_rewrite"
path = "tests/cli_rewrite.rs"
[[test]]
name = "cli_stats"
path = "tests/cli_stats.rs"
[[test]]
name = "cli_stdin_integration"
path = "tests/cli_stdin_integration.rs"
[[test]]
name = "cli_subcommand"
path = "tests/cli_subcommand.rs"
[[test]]
name = "cli_test_cargo"
path = "tests/cli_test_cargo.rs"
[[test]]
name = "cli_test_go"
path = "tests/cli_test_go.rs"
[[test]]
name = "cli_test_pytest"
path = "tests/cli_test_pytest.rs"
[[test]]
name = "cli_test_vitest"
path = "tests/cli_test_vitest.rs"
[[test]]
name = "cli_token_budget"
path = "tests/cli_token_budget.rs"
[[test]]
name = "cli_tokens"
path = "tests/cli_tokens.rs"
[[test]]
name = "cli_yaml"
path = "tests/cli_yaml.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.colored]
version = "2"
[dependencies.dirs]
version = "6.0"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1"
[dependencies.rskim-core]
version = "2.2.0"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.strip-ansi-escapes]
version = "0.2"
[dependencies.thiserror]
version = "1.0"
[dependencies.tiktoken-rs]
version = "0.7"
[dependencies.tree-sitter]
version = "0.25"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.0"