[package]
edition = "2021"
rust-version = "1.89"
name = "mimir-cli"
version = "0.1.0"
authors = ["Alain Dormehl <alaindormehl@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mimir — read-only inspection CLI for canonical stores."
homepage = "https://github.com/buildepicshit/Mimir"
documentation = "https://docs.rs/mimir-cli"
readme = "README.md"
keywords = [
"agent",
"memory",
"claude",
"cli",
"decoder",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
]
license = "Apache-2.0"
repository = "https://github.com/buildepicshit/Mimir"
[lib]
name = "mimir_cli"
path = "src/lib.rs"
[[bin]]
name = "mimir-cli"
path = "src/main.rs"
[[test]]
name = "parse_subcommand"
path = "tests/parse_subcommand.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.mimir-core]
version = "=0.1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
features = [
"std",
"attributes",
]
default-features = false
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"std",
"fmt",
"json",
"registry",
"env-filter",
]
default-features = false
[dev-dependencies.tempfile]
version = "3.12"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "warn"
todo = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"