-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (41 loc) · 984 Bytes
/
Cargo.toml
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
[package]
name = "bundle_repo"
version = "0.4.0"
description = "Pack a local or remote Git Repository to XML for LLM Consumption."
readme = "README-cratesio.md"
edition = "2021"
authors = ["Grant Ramsay <[email protected]>"]
license = "MIT"
repository = "https://github.com/seapagan/bundle-repo/"
exclude = [".github/*", "docs/*"]
categories = [
"command-line-utilities",
"development-tools",
"text-processing",
"parsing",
]
keywords = ["llm", "tokenizer", "ai", "cli", "git"]
[[bin]]
name = "bundlerepo"
path = "src/main.rs"
[dependencies]
git2 = "0.19"
tempfile = "3.3"
url = "2.2"
clap = { version = "4.1", features = ["derive"] }
regex = "1"
ignore = "0.4"
xml = "0.8"
tiktoken-rs = "0.6.0"
tabled = "0.17.0"
infer = "0.16.0"
arboard = { version = "3.4.1", default-features = false, features = [
"windows-sys",
] }
serde = { version = "1.0.214", features = ["derive"] }
config = "0.14.1"
dirs-next = "2.0.0"
[features]
default = []
[profile.dev]
incremental = true