biblib 0.4.1

Parse, manage, and deduplicate academic citations
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "biblib"
version = "0.4.1"
authors = ["Ali Azlan <aliazlanofficial@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse, manage, and deduplicate academic citations"
documentation = "https://docs.rs/biblib"
readme = "README.md"
keywords = [
    "citations",
    "deduplication",
    "nbib",
    "doi",
    "bibliography",
]
categories = [
    "science",
    "text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/revidiumhq/biblib"

[features]
csv = ["dep:csv"]
dedupe = [
    "dep:rayon",
    "dep:strsim",
]
default = [
    "csv",
    "pubmed",
    "xml",
    "ris",
    "dedupe",
    "regex",
]
diagnostics = ["dep:ariadne"]
lite = ["dep:regex-lite"]
pubmed = []
regex = ["dep:regex"]
ris = []
xml = ["dep:quick-xml"]

[lib]
name = "biblib"
path = "src/lib.rs"

[dependencies.ariadne]
version = "0.6.0"
optional = true

[dependencies.compact_str]
version = "0.9.0"

[dependencies.csv]
version = "1.3.1"
optional = true

[dependencies.either]
version = "1.15.0"

[dependencies.itertools]
version = "0.14.0"

[dependencies.quick-xml]
version = "0.37.2"
optional = true

[dependencies.rayon]
version = "1.10.0"
optional = true

[dependencies.regex]
version = "1.11.1"
optional = true

[dependencies.regex-lite]
version = "0.1.6"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.strsim]
version = "0.11.1"
optional = true

[dependencies.thiserror]
version = "2.0.11"

[dev-dependencies.pretty_assertions]
version = "1.4.1"

[dev-dependencies.rstest]
version = "0.25.0"
default-features = false