[package]
edition = "2021"
name = "mnemo-rs"
version = "1.6.21"
authors = ["Killian Van Ruymbeke"]
build = false
exclude = [
".github/**",
"target/**",
"fuzz/target/**",
"node_modules/**",
"docs/assets/*.mp4",
"package.json",
"package-lock.json",
"release-it.json",
"dist/**",
"out/**",
"coverage/**",
"*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first shell history manager with CLI/TUI, fuzzy search, project/session context, and DevSecOps-focused release hardening."
homepage = "https://github.com/Vesperis-group/mnemo"
readme = "README.md"
keywords = [
"cli",
"shell",
"history",
"sqlite",
"tui",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Vesperis-group/mnemo"
[lib]
name = "mnemo"
path = "src/lib.rs"
[[bin]]
name = "mnemo"
path = "src/main.rs"
[[test]]
name = "broken_pipe"
path = "tests/broken_pipe.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "onboarding"
path = "tests/onboarding.rs"
[[test]]
name = "project"
path = "tests/project.rs"
[[test]]
name = "scripts"
path = "tests/scripts.rs"
[[test]]
name = "search_show"
path = "tests/search_show.rs"
[[test]]
name = "secrets"
path = "tests/secrets.rs"
[[test]]
name = "session"
path = "tests/session.rs"
[[test]]
name = "shell_upgrade"
path = "tests/shell_upgrade.rs"
[[test]]
name = "v2_features"
path = "tests/v2_features.rs"
[[test]]
name = "v3_data_management"
path = "tests/v3_data_management.rs"
[[test]]
name = "v4_tui"
path = "tests/v4_tui.rs"
[[test]]
name = "v5_lifecycle"
path = "tests/v5_lifecycle.rs"
[[test]]
name = "v6_product"
path = "tests/v6_product.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6.0"
[dependencies.flate2]
version = "1.0"
[dependencies.nucleo-matcher]
version = "0.3"
[dependencies.ratatui]
version = "0.30"
[dependencies.rusqlite]
version = "0.40"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.tar]
version = "0.4"
[dependencies.toml]
version = "1.1"
[dependencies.ureq]
version = "3.3"
[dev-dependencies.flate2]
version = "1.0"
[dev-dependencies.sha2]
version = "0.11"
[dev-dependencies.tar]
version = "0.4"
[dev-dependencies.tempfile]
version = "3.10"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true