forked from samzong/Recall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (63 loc) · 1.8 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (63 loc) · 1.8 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
[package]
name = "recall"
version = "0.3.0"
edition = "2024"
license = "MIT"
description = "Unified search, usage tracking, and JSONL export for AI coding sessions"
repository = "https://github.com/samzong/Recall"
publish = false
[workspace]
members = [".", "extensions/recall-probe", "extensions/recall-reflect"]
default-members = ["."]
resolver = "2"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
rusqlite = { version = "0.32", features = ["bundled"] }
sqlite-vec = "0.1"
hf-hub = { version = "0.5", features = ["ureq"] }
ureq = "3"
tokenizers = { version = "0.22", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "6"
chrono = "0.4"
anyhow = "1"
flate2 = "1"
kitup = "0.1.1"
sha2 = "0.10"
tar = "0.4"
tempfile = "3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
walkdir = "2"
globset = "0.4"
uuid = { version = "1", features = ["v4"] }
ratatui = "0.29"
crossterm = "0.28"
unicode-width = "0.2"
fs2 = "0.4"
pulldown-cmark = "0.13"
zip = { version = "7", default-features = false, features = ["deflate"] }
[target.'cfg(target_os = "macos")'.dependencies]
candle-core = { version = "0.10", features = ["metal"] }
candle-nn = { version = "0.10", features = ["metal"] }
candle-transformers = { version = "0.10", features = ["metal"] }
[target.'cfg(not(target_os = "macos"))'.dependencies]
candle-core = "0.10"
candle-nn = "0.10"
candle-transformers = "0.10"
[features]
default = []
cuda = ["candle-core/cuda", "candle-nn/cuda", "candle-transformers/cuda"]
[profile.release]
opt-level = 3
lto = true
strip = true
[package.metadata.release]
publish = false
verify = false
push-remote = "origin"
pre-release-commit-message = "chore(release): bump to v{{version}}"
tag-message = "v{{version}}"
tag-name = "v{{version}}"