-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (67 loc) · 1.86 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (67 loc) · 1.86 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "doc2skill"
version = "0.4.0"
edition = "2024"
description = "Generate agent skills from package documentation"
repository = "https://github.com/Odonno/doc2skill"
readme = "README.md"
license-file = "LICENSE"
keywords = ["cli", "skills", "ai"]
categories = ["command-line-utilities"]
[[bin]]
name = "doc2skill"
path = "src/main.rs"
[dependencies]
chrono = { version = "0.4.45", default-features = false, features = ["now", "std"] }
clap = { version = "4.6.5", features = ["derive"] }
colored = "2"
color-eyre = "0.6.5"
crossterm = "0.29.0"
dirs = "6"
figment = { version = "0.10", default-features = false, features = ["toml", "env"] }
hashbrown = "0.17.1"
htmd = "0.5.5"
ignore = "0.4.31"
indicatif = "0.18.6"
inquire = "0.9.4"
notify = "9.0.0-rc.4"
pulldown-cmark = "0.13"
ratatui = "0.30.2"
reqwest = { version = "0.13.4", default-features = false, features = ["native-tls", "json", "blocking", "query"] }
scraper = "0.27.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.9.8"
tokio = { version = "1.53.1", features = ["full"] }
tiktoken-rs = { version = "0.12.0", optional = true }
walkdir = "2.5.0"
[build-dependencies]
reqwest = { version = "0.13.4", features = ["blocking", "json"] }
scraper = "0.27.0"
serde_json = "1.0"
[dev-dependencies]
assert_cmd = "2"
http-body-util = "0.1"
hyper = { version = "1", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto"] }
insta = { version = "1.48.0", features = ["filters", "ron"] }
test-case = "3"
predicates = "3"
serial_test = "3"
temp-dir = "0.2"
[features]
default = ["tokens", "rust", "csharp", "typescript", "llmtxt"]
tokens = ["dep:tiktoken-rs"]
rust = []
csharp = []
typescript = []
llmtxt = []
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = 'abort'
strip = true