[package]
edition = "2021"
name = "ninmu-cli"
version = "0.1.0"
authors = ["deep-thinking-llc"]
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ninmu Code — agentic AI coding assistant for the terminal"
homepage = "https://ninmu.dev"
readme = false
keywords = [
"ai",
"coding",
"assistant",
"cli",
"agent",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/deep-thinking-llc/claw-code"
[[bin]]
name = "ninmu"
path = "src/main.rs"
[[test]]
name = "cli_flags_and_config_defaults"
path = "tests/cli_flags_and_config_defaults.rs"
[[test]]
name = "compact_output"
path = "tests/compact_output.rs"
[[test]]
name = "mock_parity_harness"
path = "tests/mock_parity_harness.rs"
[[test]]
name = "output_format_contract"
path = "tests/output_format_contract.rs"
[[test]]
name = "resume_slash_commands"
path = "tests/resume_slash_commands.rs"
[dependencies.crossterm]
version = "0.28"
[dependencies.ninmu-api]
version = "0.1.0"
[dependencies.ninmu-commands]
version = "0.1.0"
[dependencies.ninmu-compat-harness]
version = "0.1.0"
[dependencies.ninmu-plugins]
version = "0.1.0"
[dependencies.ninmu-runtime]
version = "0.1.0"
[dependencies.ninmu-sdk]
version = "0.1.0"
[dependencies.ninmu-tools]
version = "0.1.0"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.reqwest]
version = "0.12"
features = ["blocking"]
[dependencies.rustyline]
version = "15"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.syntect]
version = "5"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"signal",
"time",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"