-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 731 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 731 Bytes
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
[package]
name = "mdlens"
version = "0.1.3"
edition = "2021"
description = "Token-efficient Markdown structure CLI for agents"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Dreeseaw/mdlens"
repository = "https://github.com/Dreeseaw/mdlens"
documentation = "https://docs.rs/mdlens"
keywords = ["markdown", "cli", "ai", "agents", "documentation"]
categories = ["command-line-utilities", "text-processing"]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
ignore = "0.4"
regex = "1"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
criterion = "0.5"
[[bench]]
name = "parse_bench"
harness = false