[package]
edition = "2024"
name = "citum"
version = "0.70.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Citum CLI: render, check, convert, and manage citation styles, references, and documents"
homepage = "https://citum.org"
readme = "README.md"
keywords = [
"citation",
"bibliography",
"csl",
"citeproc",
"scholarly",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/citum/citum-core"
resolver = "2"
[features]
default = []
dhat-heap = ["dep:dhat"]
schema = [
"dep:schemars",
"citum-schema/schema",
"dep:citum-server",
"citum-server/schema-types",
]
[[bin]]
name = "citum"
path = "src/main.rs"
[dependencies.ciborium]
version = "0.2"
[dependencies.citum-engine]
version = "0.70.1"
[dependencies.citum-io]
version = "0.70.1"
[dependencies.citum-resolver-api]
version = "0.70.1"
[dependencies.citum-schema]
version = "0.70.1"
features = ["legacy-convert"]
[dependencies.citum-schema-data]
version = "0.70.1"
[dependencies.citum-server]
version = "0.70.1"
optional = true
[dependencies.citum_store]
version = "0.70.1"
features = ["http"]
[dependencies.clap]
version = "4.4"
features = [
"derive",
"color",
]
[dependencies.clap_complete]
version = "4.4"
[dependencies.comfy-table]
version = "7.1"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.dhat]
version = "0.3"
optional = true
[dependencies.ratatui]
version = "0.30.0"
features = ["crossterm_0_29"]
default-features = false
[dependencies.schemars]
version = "1.2.1"
features = ["indexmap2"]
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.10"
package = "serde_yaml_ng"
[dependencies.strsim]
version = "0.11"
[dependencies.url]
version = "2.5"
features = ["serde"]
[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"