[package]
edition = "2024"
rust-version = "1.98"
name = "concept-graph"
version = "0.1.0"
authors = ["Ruben Talstra"]
build = false
include = [
"src/**",
"README.md",
"LICENSE",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The materialized SNOMED CT ontology: CSR adjacency and roaring transitive-closure bitmaps"
homepage = "https://ferroterm.eu"
documentation = "https://docs.rs/concept-graph"
readme = "README.md"
keywords = [
"ontology",
"hierarchy",
"snomed",
"terminology",
"bitmap",
]
categories = [
"data-structures",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/rubentalstra/FerroTERM"
[lib]
name = "concept_graph"
path = "src/lib.rs"
[dependencies.roaring]
version = "0.11.5"
[dependencies.thiserror]
version = "2.0.20"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.rf2]
version = "0.1.0"
[lints.clippy]
allow_attributes_without_reason = "deny"
as_underscore = "deny"
await_holding_lock = "deny"
dbg_macro = "deny"
derivable_impls = "deny"
disallowed_methods = "deny"
disallowed_types = "deny"
expect_used = "deny"
float_cmp_const = "deny"
fn_to_numeric_cast_any = "deny"
indexing_slicing = "deny"
integer_division = "warn"
iter_over_hash_type = "deny"
let_underscore_lock = "deny"
let_underscore_must_use = "deny"
let_underscore_untyped = "deny"
lossy_float_literal = "deny"
panic = "deny"
panic_in_result_fn = "deny"
print_stderr = "deny"
print_stdout = "deny"
string_slice = "deny"
todo = "deny"
too_long_first_doc_paragraph = "warn"
unimplemented = "deny"
unnecessary_safety_comment = "deny"
unnecessary_safety_doc = "deny"
unreachable = "deny"
unused_result_ok = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
ambiguous_negative_literals = "deny"
let_underscore_drop = "deny"
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_html_tags = "deny"
missing_crate_level_docs = "warn"
private_intra_doc_links = "deny"
unescaped_backticks = "warn"