[package]
edition = "2024"
name = "paper-gap"
version = "0.3.2"
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"README.md",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local CLI for finding research papers with missing, weak, or stale public code"
readme = "README.md"
keywords = [
"research",
"papers",
"arxiv",
"cli",
"code",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT"
repository = "https://git.r0r-5chach.xyz/rad:z3bTxkgd8yjsz7jRndujiANyfzVyh"
[lib]
name = "paper_gap"
path = "src/lib.rs"
[[bin]]
name = "paper-gap"
path = "src/main.rs"
[[test]]
name = "analyse"
path = "tests/analyse.rs"
[[test]]
name = "arxiv"
path = "tests/arxiv.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "openalex"
path = "tests/openalex.rs"
[[test]]
name = "paper"
path = "tests/paper.rs"
[[test]]
name = "provider"
path = "tests/provider.rs"
[[test]]
name = "pwc"
path = "tests/pwc.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[[test]]
name = "repos"
path = "tests/repos.rs"
[[test]]
name = "sources"
path = "tests/sources.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.quick-xml]
version = "0.36"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
]
[dependencies.urlencoding]
version = "2"