1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! # diffctx
//!
//! Smart git diff context selection for LLM code review.
//!
//! This crate currently reserves the `diffctx` name on crates.io. The
//! working implementation lives in the `treemapper` Python package
//! (<https://pypi.org/project/treemapper/>); a native Rust library
//! release is tracked at <https://github.com/nikolay-e/diffctx>.
//!
//! ## Status
//!
//! - **0.x** — name-reservation stub. Public API is intentionally tiny.
//! - **1.x** (planned) — full library surface exposing the diff-seeded
//! PageRank + lazy-greedy fragment selection as a Rust API.
/// Canonical repository URL for the diffctx project.
pub const REPO: &str = "https://github.com/nikolay-e/diffctx";
/// Canonical PyPI package providing the current implementation.
pub const PYPI_PACKAGE: &str = "treemapper";
/// Returns a one-line pointer for users who landed here looking for code.