cordance 0.1.1

Cordance — deterministic-first context-pack compiler for AI coding agents. Umbrella package: installs the `cordance` binary, identical to `cargo install cordance-cli`.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Cordance umbrella binary.
//!
//! `cargo install cordance` is the canonical install command for the
//! `cordance` binary. This package depends on
//! [`cordance-cli`](https://crates.io/crates/cordance-cli) and re-uses its
//! [`run`](https://docs.rs/cordance-cli/latest/cordance_cli/fn.run.html)
//! entry point verbatim, so both install paths produce identical binaries.
//!
//! See the [Cordance README](https://github.com/0ryant/cordance#readme) for
//! the golden path and the full subcommand surface.

#![forbid(unsafe_code)]

fn main() -> std::process::ExitCode {
    cordance_cli::run()
}