[package]
edition = "2021"
name = "rskim"
version = "0.9.5"
authors = ["Skim Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Smart code reader - streaming code transformation for AI agents"
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_cache"
path = "tests/cli_cache.rs"
[[test]]
name = "cli_directory"
path = "tests/cli_directory.rs"
[[test]]
name = "cli_glob"
path = "tests/cli_glob.rs"
[[test]]
name = "cli_markdown"
path = "tests/cli_markdown.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.dirs]
version = "6.0"
[dependencies.glob]
version = "0.3"
[dependencies.rayon]
version = "1.10"
[dependencies.rskim-core]
version = "0.9.5"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tiktoken-rs]
version = "0.7"
[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"