-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (57 loc) · 1.79 KB
/
Cargo.toml
File metadata and controls
63 lines (57 loc) · 1.79 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
[package]
name = "quickctx"
version = "0.1.4"
edition = "2024"
authors = ["Quickctx Contributors"]
description = "A bidirectional file content aggregator and extractor that converts between files and markdown-formatted representations"
license = "MIT"
repository = "https://github.com/CaddyGlow/quickctx"
homepage = "https://github.com/CaddyGlow/quickctx"
readme = "README.md"
keywords = ["markdown", "aggregator", "extractor", "cli", "files"]
categories = ["command-line-utilities", "text-processing", "development-tools"]
[dependencies]
camino = { version = "1.1", features = ["serde1"] }
clap = { version = "4.5", features = ["derive"] }
dialoguer = "0.12"
ignore = "0.4"
pulldown-cmark = { version = "0.13", default-features = false, features = [
"simd",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_path_to_error = "0.1"
strum = { version = "0.27", features = ["derive"] }
thiserror = "2.0"
toml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
glob = "0.3"
globset = "0.4"
lsp-types = "0"
shellexpand = "3.1"
regex = "1.10"
indicatif = "0.18"
self_update = { version = "0.42", default-features = false, features = [
"rustls",
] }
dirs = "6.0"
percent-encoding = "2.3"
# cargo-binstall support
# Enables fast binary installation via: cargo binstall quickctx
# Supports installation from pre-built GitHub release binaries
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.{ archive-format }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-gnu]
pkg-fmt = "zip"
[[bin]]
name = "quickctx"
path = "src/main.rs"
[[bin]]
name = "quickctx-analyze"
path = "src/bin/analyze.rs"
[dev-dependencies]
tempfile = "3.8"
rusty-hook = "0.11.2"