omk 0.5.0

A Rust runtime for Kimi CLI. Turns prompts into proof-backed engineering runs with gates, worktrees, and replay.
Documentation
[graph]
targets = [
    { triple = "x86_64-unknown-linux-gnu" },
    { triple = "x86_64-apple-darwin" },
    { triple = "aarch64-apple-darwin" },
]

[advisories]
version = 2
yanked = "deny"
# cargo-deny v2 removed per-severity control for unmaintained advisories.
# "workspace" limits checks to direct workspace dependencies, surfacing
# maintainer-risk on crates we directly depend on while keeping transitive
# noise manageable.
unmaintained = "workspace"

[licenses]
version = 2
allow = [
    # Core allowlist required by project policy.
    "MIT",
    "Apache-2.0",
    "BSD-3-Clause",
    "Unicode-DFS-2016",
    # Additional OSI-approved permissive licenses required by transitive
    # dependencies. Each is vetted and copyleft-free.
    "BSL-1.0",
    "CC0-1.0",
    "ISC",
    "MIT-0",
    "MPL-2.0",
    "Unicode-3.0",
    "Unlicense",
    "Zlib",
]
confidence-threshold = 0.8

[bans]
multiple-versions = "warn"
wildcards = "deny"
highlight = "all"

[sources]
# Supply-chain firewall: the only sanctioned dependency source is crates.io
# (which cargo-deny accepts implicitly). Any unexpected registry or git URL
# fails the build so we notice an opaque pull-in before it ships.
unknown-registry = "deny"
unknown-git = "deny"