[package]
edition = "2024"
name = "citum-refs"
version = "0.79.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Citum reference data loading and parsing"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/citum/citum-core"
resolver = "2"
[lib]
name = "citum_refs"
path = "src/lib.rs"
doctest = false
[[test]]
name = "biblatex_conversion"
path = "tests/biblatex_conversion.rs"
[[test]]
name = "verify_data_model_examples"
path = "tests/verify_data_model_examples.rs"
[dependencies.biblatex]
version = "0.11"
[dependencies.ciborium]
version = "0.2"
[dependencies.citum-schema]
version = "0.79.0"
features = ["legacy-convert"]
[dependencies.csl-legacy]
version = "0.79.0"
[dependencies.indexmap]
version = "2.2.6"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.10"
package = "serde_yaml_ng"
[dependencies.thiserror]
version = "2.0"
[dependencies.url]
version = "2.5"
features = ["serde"]
[dev-dependencies.rstest]
version = "0.26"
[lints.clippy]
allow_attributes_without_reason = "deny"
assigning_clones = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cognitive_complexity = "deny"
default_trait_access = "allow"
doc_markdown = "allow"
empty_docs = "deny"
expect_used = "deny"
format_push_string = "allow"
four_forward_slashes = "deny"
get_unwrap = "deny"
implicit_hasher = "allow"
indexing_slicing = "deny"
items_after_statements = "allow"
manual_string_new = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_safety_doc = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
panic = "deny"
panic_in_result_fn = "deny"
redundant_closure_for_method_calls = "allow"
ref_option = "allow"
similar_names = "allow"
string_slice = "deny"
struct_excessive_bools = "allow"
tabs_in_doc_comments = "deny"
todo = "deny"
trivially_copy_pass_by_ref = "allow"
type_complexity = "allow"
unimplemented = "deny"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
unreachable = "deny"
unused_self = "allow"
unwrap_in_result = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_code = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("typescript"))']
[lints.rustdoc]
bare_urls = "warn"
broken_intra_doc_links = "deny"
invalid_html_tags = "warn"
missing_crate_level_docs = "warn"
private_intra_doc_links = "warn"
redundant_explicit_links = "warn"
unescaped_backticks = "warn"