geographdb-core 0.5.4

Geometric graph database core - 3D spatial indexing for code analysis
Documentation
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html

[graph]
targets = [
    { triple = "x86_64-unknown-linux-gnu" },
    { triple = "x86_64-pc-windows-msvc" },
]

[advisories]
version = 2
ignore = [
    # Transitive unmaintained crates with no safe upgrade path available.
    # number_prefix is pulled in by indicatif (via hf-hub / tokenizers).
    { id = "RUSTSEC-2025-0119", reason = "transitive via indicatif; no upgrade available" },
    # paste is pulled in by tokenizers, parquet, and nalgebra.
    { id = "RUSTSEC-2024-0436", reason = "transitive via tokenizers/parquet/nalgebra; no upgrade available" },
]

[licenses]
version = 2
allow = [
    "Apache-2.0",
    "MIT",
    "BSD-3-Clause",
    "ISC",
    "MPL-2.0",
    "CDLA-Permissive-2.0",
    "Unicode-3.0",
    "GPL-3.0-only",
    "Zlib",
]

[bans]
# Multiple versions of the same crate are allowed by default
multiple-versions = "warn"
wildcards = "warn"
highlight = "all"

[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-git = []