-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (36 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "rskim"
version = "1.0.0"
edition = "2021"
authors = ["Skim Contributors"]
license = "MIT"
description = "The most intelligent context optimization engine for coding agents. Code-aware AST parsing, command rewriting, output compression."
repository = "https://github.com/dean0x/skim"
readme = "README.md"
[[bin]]
name = "skim"
path = "src/main.rs"
[dependencies]
rskim-core = { version = "1.0.0", path = "../rskim-core" }
clap = { version = "4.5", features = ["derive"] }
anyhow = { workspace = true }
globset = { workspace = true }
ignore = { workspace = true }
rayon = { workspace = true }
dirs = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
tiktoken-rs = { workspace = true }
thiserror = { workspace = true }
clap_complete = { workspace = true }
strip-ansi-escapes = { workspace = true }
regex = { workspace = true }
rusqlite = { workspace = true }
colored = { workspace = true }
serde_yaml_ng = { workspace = true }
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.0"
serde_json = { workspace = true }