[package]
edition = "2024"
name = "citum-server"
version = "0.70.0"
authors = ["Bruce D'Arcus <bdarcus@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Citum JSON-RPC server for citation and bibliography processing"
homepage = "https://citum.org"
readme = "README.md"
keywords = [
"citation",
"bibliography",
"csl",
"citeproc",
"json-rpc",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/citum/citum-core"
resolver = "2"
[features]
async = ["dep:tokio"]
default = [
"http",
"session",
]
http = [
"async",
"dep:axum",
"dep:time",
]
schema = [
"http",
"schema-types",
]
schema-types = [
"dep:schemars",
"citum-engine/schema",
]
session = []
[lib]
name = "citum_server"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "citum-server"
path = "src/main.rs"
[[test]]
name = "rpc"
path = "tests/rpc.rs"
[dependencies.axum]
version = "0.8"
optional = true
[dependencies.citum-engine]
version = "0.70.0"
[dependencies.citum-schema]
version = "0.70.0"
[dependencies.citum_store]
version = "0.70.0"
features = ["http"]
[dependencies.clap]
version = "4.4"
features = [
"derive",
"color",
]
[dependencies.schemars]
version = "1.2.1"
features = ["derive"]
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.thiserror]
version = "2.0"
[dependencies.time]
version = "0.3.47"
features = ["formatting"]
optional = true
default-features = false
[dependencies.tokio]
version = "1"
features = ["full"]
optional = true
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[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"