[package]
edition = "2021"
rust-version = "1.75"
name = "proserpina"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-agent critique and cross-examination pipeline for documents requiring intellectual rigor — provider-agnostic interaction-graph engine with pluggable LLM backends"
homepage = "https://github.com/industrial-algebra/Proserpina"
documentation = "https://docs.rs/proserpina"
readme = "README.md"
keywords = [
"multi-agent",
"critique",
"peer-review",
"llm",
"evaluation",
]
categories = [
"command-line-utilities",
"text-processing",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/industrial-algebra/Proserpina"
[features]
backend-http = [
"serde",
"dep:reqwest",
"dep:tokio",
"dep:serde_json",
"dep:rand",
"dep:toml",
"dep:base64",
"dep:sha2",
"dep:hex",
"dep:webbrowser",
]
cli = ["dep:clap"]
default = ["std"]
json = [
"serde",
"dep:serde_json",
]
keyring = [
"dep:keyring",
"backend-http",
]
serde = ["dep:serde"]
std = []
[lib]
name = "proserpina"
path = "src/lib.rs"
[[bin]]
name = "proserpina"
path = "src/main.rs"
required-features = ["cli"]
[[example]]
name = "deepseek_smoke"
path = "examples/deepseek_smoke.rs"
required-features = ["backend-http"]
[[example]]
name = "library_usage"
path = "examples/library_usage.rs"
[[example]]
name = "panel_smoke"
path = "examples/panel_smoke.rs"
required-features = [
"backend-http",
"cli",
]
[[test]]
name = "agent_readiness"
path = "tests/agent_readiness.rs"
[[test]]
name = "auth_and_cli"
path = "tests/auth_and_cli.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "cli_json"
path = "tests/cli_json.rs"
[[test]]
name = "cli_roster"
path = "tests/cli_roster.rs"
[[test]]
name = "core_data_model"
path = "tests/core_data_model.rs"
[[test]]
name = "credentials"
path = "tests/credentials.rs"
[[test]]
name = "echo_backend"
path = "tests/echo_backend.rs"
[[test]]
name = "graph_runner"
path = "tests/graph_runner.rs"
[[test]]
name = "http_backend"
path = "tests/http_backend.rs"
[[test]]
name = "keyring"
path = "tests/keyring.rs"
[[test]]
name = "panels"
path = "tests/panels.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[[test]]
name = "retry"
path = "tests/retry.rs"
[[test]]
name = "rich_findings"
path = "tests/rich_findings.rs"
[[test]]
name = "roster"
path = "tests/roster.rs"
[dependencies.base64]
version = "0.22"
optional = true
[dependencies.clap]
version = "4"
features = ["derive"]
optional = true
[dependencies.hex]
version = "0.4"
optional = true
[dependencies.keyring]
version = "3"
optional = true
[dependencies.rand]
version = "0.9"
optional = true
[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.sha2]
version = "0.10"
optional = true
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
optional = true
[dependencies.toml]
version = "0.8"
optional = true
[dependencies.webbrowser]
version = "1"
optional = true
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"net",
"rt-multi-thread",
"macros",
"time",
"io-util",
]