-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 970 Bytes
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 970 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
[package]
name = "fur-cli"
version = "1.5.0"
edition = "2021"
authors = ["Andrew Garcia"]
description = "Turn your AI chats into a durable, local-first diary. Save messages, attach notes, organize conversations, and stop losing context every time the model forgets you exist."
license = "MIT"
readme = "README.md"
repository = "https://github.com/andrewrgarcia/fur-cli"
homepage = "https://furchats.vercel.app"
keywords = ["cli", "notes", "ai", "chat", "versioning"]
categories = ["command-line-utilities"]
[[bin]]
name = "fur"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
chrono = "0.4"
rand = "0.9.2"
colored = "3.0.0"
emojis = "0.6"
walkdir = "2.5.0"
dirs = "6.0.0"
regex = "1"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[lib]
name = "fur_cli"
path = "src/lib.rs"