-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (53 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (53 loc) · 1.37 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
[package]
name = "memex"
version = "0.11.0"
edition = "2024"
build = "build.rs"
description = "CLI tool for indexing and searching local agent conversation history"
license = "MIT"
repository = "https://github.com/nicosuave/memex"
[features]
default = []
cuda = ["ort/cuda", "dep:libloading"]
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
dialoguer = "0.11"
chrono = { version = "0.4", features = ["serde"] }
directories = "5.0"
fastembed = "5"
model2vec-rs = "0.1.4"
ort = "2.0.0-rc.10"
crossbeam-channel = "0.5"
once_cell = "1.19"
memchr = "2.7"
postcard = { version = "1.1", default-features = false, features = ["use-std"] }
memmap2 = "0.9"
rayon = "1.10"
regex = "1.10"
rusqlite = { version = "0.31", features = ["bundled"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
sha2 = "0.10"
simd-json = { version = "0.13", features = ["serde"] }
tantivy = "0.22"
usearch = "2"
toml = "0.8"
walkdir = "2.5"
globset = "0.4"
indicatif = "0.17"
ratatui = { version = "0.30", default-features = false, features = [
"crossterm_0_29",
"unstable-rendered-line-info",
] }
crossterm = "0.29"
tui-markdown = { version = "0.3.9", default-features = false }
tempfile = "3"
libc = "0.2"
libloading = { version = "0.8", optional = true }
tiny_http = "0.12"
base64 = "0.22"
getrandom = "0.3"
hmac = "0.12"
subtle = "2.6"
[dev-dependencies]