rlm-cli 1.2.4

Recursive Language Model (RLM) REPL for Claude Code - handles long-context tasks via chunking and recursive sub-LLM calls
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "rlm-cli"
version = "1.2.4"
authors = ["zircote"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Recursive Language Model (RLM) REPL for Claude Code - handles long-context tasks via chunking and recursive sub-LLM calls"
homepage = "https://github.com/zircote/rlm-rs"
documentation = "https://docs.rs/rlm-cli"
readme = "README.md"
keywords = [
    "llm",
    "claude",
    "recursive",
    "language-model",
    "repl",
]
categories = [
    "command-line-utilities",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/zircote/rlm-rs"

[features]
default = ["fastembed-embeddings"]
fastembed-embeddings = ["dep:fastembed"]
full-search = [
    "fastembed-embeddings",
    "usearch-hnsw",
]
usearch-hnsw = ["dep:usearch"]

[lib]
name = "rlm_rs"
path = "src/lib.rs"

[[bin]]
name = "rlm-cli"
path = "src/main.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.anyhow]
version = "1.0.100"

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "cargo",
    "env",
]

[dependencies.fastembed]
version = "5"
features = [
    "ort-download-binaries",
    "hf-hub-rustls-tls",
]
optional = true
default-features = false

[dependencies.memmap2]
version = "0.9"

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1.11"

[dependencies.rusqlite]
version = "0.38"
features = [
    "bundled",
    "modern_sqlite",
]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.unicode-segmentation]
version = "1.12"

[dependencies.usearch]
version = "2.23"
optional = true

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.proptest]
version = "1.9.0"

[dev-dependencies.tempfile]
version = "3.13"

[dev-dependencies.test-case]
version = "3.3.1"

[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
redundant_pub_crate = "allow"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
rust_2024_compatibility = "warn"
unsafe_code = "warn"

[profile.dev]
opt-level = 0
debug = 1

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
strip = true

[profile.release-debug]
debug = 2
inherits = "release"
strip = false