[package]
edition = "2024"
rust-version = "1.94"
name = "sourceright"
version = "0.1.20"
build = false
include = [
"src/**",
"mcp/**",
"plugins/**",
"schemas/**",
"examples/**",
"fixtures/**",
"provider-fixtures/**",
"sourceright-bench/**",
"docs/src/**",
"book.toml",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"CITATION.cff",
"SECURITY.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference verification infrastructure for academic and legal citation workflows."
homepage = "https://edithatogo.github.io/sourceright/"
documentation = "https://edithatogo.github.io/sourceright/"
readme = "README.md"
keywords = [
"citations",
"references",
"csl",
"mcp",
"verification",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/edithatogo/sourceright"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "sourceright"
path = "src/lib.rs"
[[bin]]
name = "bench"
path = "src/bin/bench.rs"
[[bin]]
name = "citation-sync"
path = "src/bin/citation-sync.rs"
[[bin]]
name = "sourceright"
path = "src/main.rs"
[dependencies.reqwest]
version = "0.12.24"
features = [
"blocking",
"json",
"native-tls",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.toml]
version = "0.8.19"
[dev-dependencies.tempfile]
version = "3.23.0"