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
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/

[graph]
targets = [
    "x86_64-unknown-linux-gnu",
    "x86_64-apple-darwin",
    "aarch64-apple-darwin",
]

#==============================================================================
# Advisories - Security vulnerability detection
#==============================================================================
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]

# Ignore specific advisories (with justification)
ignore = [
    # paste is unmaintained but pulled in by fastembed → tokenizers (transitive dep)
    "RUSTSEC-2024-0436",
]

#==============================================================================
# Licenses - Allowed licenses
#==============================================================================
[licenses]
confidence-threshold = 0.8
private = { ignore = true }

# List of allowed licenses (SPDX identifiers)
allow = [
    "MIT",
    "Apache-2.0",
    "Zlib",
    "Unicode-3.0",
    "ISC",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "MPL-2.0",
    "CDLA-Permissive-2.0",
]

#==============================================================================
# Bans - Crate-level bans
#==============================================================================
[bans]
multiple-versions = "warn"
highlight = "all"
wildcards = "deny"
workspace-default-features = "allow"
external-default-features = "allow"

# Deny specific crates
deny = []

# Skip checking transitive deps we can't control
skip = [
    # openssl pulled in by fastembed transitive deps (native-tls fallback)
    { crate = "openssl", reason = "Transitive dep from fastembed we can't control" },
]

#==============================================================================
# Sources - Allowed crate sources
#==============================================================================
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]