zeph 0.22.4

Lightweight AI agent with hybrid inference, skills-first architecture, and multi-channel I/O
[graph]
targets = [
    "x86_64-unknown-linux-gnu",
    "x86_64-apple-darwin",
    "aarch64-apple-darwin",
]
all-features = false
# Scan the "full" bundle rather than hand-picked leaf features: it is the most
# feature-complete build shipped by CI (blocking `bundle-check` job) and release
# artifacts, transitively covering pdf, candle (via classifiers), tui (via desktop),
# acp, gateway, a2a, discord, slack, scheduler, profiling, sandbox, gonka, cocoon,
# registry, and session. Keeping this as a single bundle reference (instead of an
# enumerated feature list) avoids silent scan-scope drift whenever `full` gains a
# new leaf feature (see #5994: `pdf` shipped in production but was invisible here).
features = ["full"]

[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
# number_prefix unmaintained (via indicatif -> hf-hub, candle transitive dep)
# proc-macro-error2 unmaintained (RUSTSEC-2026-0173, via aquamarine -> teloxide and i18n-embed-fl -> age)
# Both are transitive; remove once teloxide/age update their proc-macro dependencies
# ttf-parser unmaintained (RUSTSEC-2026-0192, via pdf-extract -> lopdf -> ttf-parser, pdf feature)
# No patched version exists; advisory suggests migrating to `skrifa`. Transitive via
# pdf-extract/lopdf, which do not offer a ttf-parser-free path yet; track migrating off
# ttf-parser (or pdf-extract/lopdf entirely) once an upstream alternative lands
ignore = ["RUSTSEC-2024-0436", "RUSTSEC-2026-0173", "RUSTSEC-2026-0192"]

[licenses]
confidence-threshold = 0.93
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "Zlib",
    "MPL-2.0",
    "CC0-1.0",
    "Unlicense",
    "OpenSSL",
    "CDLA-Permissive-2.0",
]

[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]

[[licenses.clarify]]
name = "ollama-rs"
expression = "MIT"
license-files = []

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

# Allow thiserror 1.x/2.x duplicate until qdrant-client updates to 2.x
skip = [
    { name = "thiserror", version = "=1.0.69" },
    { name = "thiserror-impl", version = "=1.0.69" },
]

[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]