-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (37 loc) 路 993 Bytes
/
Copy pathCargo.toml
File metadata and controls
48 lines (37 loc) 路 993 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "adr-search"
version = "0.1.0"
edition = "2024"
description = "Semantic search over Architecture Decision Records, backed by embedded HelixDB"
license = "MIT"
repository = "https://github.com/kevinmichaelchen/helix-tools"
keywords = ["adr", "architecture", "search", "semantic", "ai"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Markdown frontmatter
gray_matter = "0.2"
# Embeddings (local)
fastembed = "4"
# Hashing (delta detection)
sha2 = "0.10"
# Date handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
anyhow = "1"
thiserror = "2"
# HelixDB (embedded) - TODO: Add when available
# helixdb = { path = "../helix-db" }
[dev-dependencies]
tempfile = "3"
[[bin]]
name = "adr-search"
path = "src/main.rs"
[lib]
name = "adr_search"
path = "src/lib.rs"