[package]
edition = "2024"
rust-version = "1.89.0"
name = "ponte"
version = "0.1.2"
authors = ["pleme-io"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bridges LangChain OpenWiki into the pleme-io fleet: reads the target repo's typescape IR + zoekt hits as context, invokes OpenWiki unmodified as a subprocess, routes the result through the fleet's doc/compliance layers. Never forks OpenWiki."
homepage = "https://github.com/pleme-io/ponte"
readme = "README.md"
license = "MIT"
repository = "https://github.com/pleme-io/ponte"
[lib]
name = "ponte"
path = "src/lib.rs"
[[bin]]
name = "ponte"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.shigoto-dag]
version = "0.1"
[dependencies.shigoto-emit]
version = "0.1"
[dependencies.shigoto-retry]
version = "0.1"
[dependencies.shigoto-scheduler]
version = "0.1"
[dependencies.shigoto-types]
version = "0.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"process",
"fs",
"time",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.zoekt-mcp]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true