-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 818 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 818 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
[package]
name = "mnemonai"
version = "0.16.0"
edition = "2024"
description = "Universal AI coding conversation history browser"
license = "MIT"
repository = "https://github.com/bquenin/mnemonai"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
colored = "3.0"
clap = { version = "4.5", features = ["derive"] }
chrono = "0.4"
thiserror = "2.0"
chrono-humanize = "0.2"
toml = "0.9"
home = "0.5"
rayon = "1.10"
ratatui = "0.30"
crossterm = "0.29"
textwrap = "0.16"
pulldown-cmark = "0.13"
unicode-width = "0.2"
arboard = "3.4"
syntect = { version = "5.2", default-features = false, features = ["default-syntaxes", "default-themes", "regex-fancy"] }
rusqlite = { version = "0.39", features = ["bundled"] }
md5 = "0.8"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"