[package]
edition = "2021"
name = "fur-cli"
version = "1.8.0"
authors = ["Andrew Garcia"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
homepage = "https://furchats.vercel.app"
readme = "README.md"
keywords = [
"cli",
"notes",
"ai",
"chat",
"versioning",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/andrewrgarcia/fur-cli"
[lib]
name = "fur_cli"
path = "src/lib.rs"
[[bin]]
name = "fur"
path = "src/main.rs"
[[test]]
name = "avatar"
path = "tests/avatar.rs"
[[test]]
name = "chat"
path = "tests/chat.rs"
[[test]]
name = "frs_basic"
path = "tests/frs_basic.rs"
[[test]]
name = "frs_branch"
path = "tests/frs_branch.rs"
[[test]]
name = "frs_store"
path = "tests/frs_store.rs"
[dependencies.aesus]
version = "0.4"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.colored]
version = "3.0.0"
[dependencies.dirs]
version = "6.0.0"
[dependencies.emojis]
version = "0.6"
[dependencies.indicatif]
version = "0.17"
[dependencies.rand]
version = "0.9.2"
[dependencies.regex]
version = "1"
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10.9"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"