claude_version 1.0.0

Manage Claude Code installation, versions, and session lifecycle.
Documentation
1
2
3
4
5
6
7
8
9
10
//! `claude_version` binary entry point.
//!
//! Thin wrapper that delegates to [`claude_version::run_cli()`].
//! The full pipeline implementation lives in the library so it is compiled
//! once and shared by the `claude_version` and `clv` binary targets.

fn main()
{
  claude_version::run_cli();
}