[package]
edition = "2024"
rust-version = "1.88"
name = "proofborne"
version = "0.1.0-alpha.2"
authors = ["Proofborne contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "proofborne"
description = "A local coding agent that proves its work"
homepage = "https://github.com/koopmannleon19977-cmyk/proofborne"
readme = "README.md"
keywords = [
"coding-agent",
"ai",
"verification",
"developer-tools",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/koopmannleon19977-cmyk/proofborne"
resolver = "2"
[[bin]]
name = "proofborne"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.45"
features = ["serde"]
[dependencies.clap]
version = "4.6.4"
features = [
"derive",
"env",
]
[dependencies.crossterm]
version = "0.29.0"
[dependencies.proofborne-adapters]
version = "0.1.0-alpha.2"
[dependencies.proofborne-core]
version = "0.1.0-alpha.2"
[dependencies.proofborne-runtime]
version = "0.1.0-alpha.2"
[dependencies.ratatui]
version = "0.30.2"
features = ["crossterm_0_29"]
[dependencies.rpassword]
version = "7.5.4"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.tokio]
version = "1.53.1"
features = [
"fs",
"io-std",
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.toml]
version = "1.1.4"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"env-filter",
"fmt",
]
[dependencies.url]
version = "2.5.8"
features = ["serde"]
[dependencies.uuid]
version = "1.20.0"
features = [
"serde",
"v4",
"v7",
]
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
default_trait_access = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
unnecessary_literal_bound = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"