-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 902 Bytes
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 902 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
[package]
name = "lore"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Local semantic search MCP server for software patterns"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
fd-lock = "4"
ignore = "0.4"
rusqlite = { version = "0.39", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlite-vec = "0.1"
toml = "0.8"
ureq = { version = "3", features = ["json"] }
walkdir = "2"
[features]
test-support = []
[dev-dependencies]
assert_cmd = "2"
insta = { version = "1", features = ["json"] }
predicates = "3"
tempfile = "3"
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[profile.release]
lto = true
opt-level = "z"
strip = true