crossref-rs 0.3.0

Crossref literature metadata & BibTeX tool (Nushell plugin + universal CLI)
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 = "2021"
name = "crossref-rs"
version = "0.3.0"
authors = ["TonyWu20 <tony.w21@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crossref literature metadata & BibTeX tool (Nushell plugin + universal CLI)"
readme = "README.md"
keywords = [
    "crossref",
    "bibtex",
    "literature",
    "nushell",
    "cli",
]
categories = [
    "command-line-utilities",
    "science",
]
license = "MIT"
repository = "https://github.com/TonyWu20/crossref-rs"

[features]
default = ["nu-v111"]
nu-plugin-any = []
nu-v110 = [
    "nu-plugin-any",
    "dep:nu-plugin-v110",
    "dep:nu-protocol-v110",
]
nu-v111 = [
    "nu-plugin-any",
    "dep:nu-plugin",
    "dep:nu-protocol",
]

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

[[bin]]
name = "crossref-cli"
path = "src/bin/cli.rs"

[[bin]]
name = "nu_plugin_crossref"
path = "src/bin/nu_plugin_crossref.rs"
required-features = ["nu-plugin-any"]

[[test]]
name = "bibtex_tests"
path = "tests/bibtex_tests.rs"

[[test]]
name = "cache_tests"
path = "tests/cache_tests.rs"

[[test]]
name = "client_tests"
path = "tests/client_tests.rs"

[[test]]
name = "config_tests"
path = "tests/config_tests.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.cached]
version = "0.59"
features = ["proc_macro"]

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "env",
    "color",
]

[dependencies.colored]
version = "3.1"

[dependencies.comfy-table]
version = "7.2"

[dependencies.confy]
version = "2.0.0"

[dependencies.crossref]
version = "0.2"

[dependencies.derive_builder]
version = "0.20.2"

[dependencies.dirs]
version = "6.0"

[dependencies.nu-plugin]
version = "0.111"
optional = true

[dependencies.nu-plugin-v110]
version = "0.110"
optional = true
package = "nu-plugin"

[dependencies.nu-protocol]
version = "0.111"
optional = true

[dependencies.nu-protocol-v110]
version = "0.110"
optional = true
package = "nu-protocol"

[dependencies.reqwest]
version = "0.13"
features = [
    "json",
    "gzip",
    "query",
]

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

[dependencies.serde_bibtex]
version = "0.7"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.toml]
version = "1.1.0"

[dependencies.url]
version = "2.5"

[dependencies.walkdir]
version = "2.5.0"

[dev-dependencies.assert_cmd]
version = "2.2"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.17.0"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.wiremock]
version = "0.6"

[build-dependencies]