[package]
edition = "2024"
rust-version = "1.98"
name = "concept-store"
version = "0.1.22"
authors = ["Ruben Talstra"]
build = false
include = [
"src/**",
"README.md",
"LICENSE",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The memory-mapped columnar concept and description store"
homepage = "https://ferroterm.eu"
documentation = "https://docs.rs/concept-store"
readme = "README.md"
keywords = [
"terminology",
"snomed",
"redb",
"healthcare",
"mmap",
]
categories = [
"database-implementations",
"science",
]
license = "BUSL-1.1"
repository = "https://github.com/rubentalstra/FerroTERM"
[lib]
name = "concept_store"
path = "src/lib.rs"
[dependencies.concept-graph]
version = "0.1.22"
[dependencies.redb]
version = "4.2.0"
[dependencies.thiserror]
version = "2.0.20"
[dev-dependencies.rf2]
version = "0.1.22"
[dev-dependencies.tempfile]
version = "3.27.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"