claude_profile 1.0.0

Claude Code account credential management and token status
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Canonical paths for all `~/.claude/` filesystem locations.
//!
//! Re-exported from `claude_common` — the authoritative implementation lives there.
//!
//! # Examples
//!
//! ```no_run
//! use claude_profile::ClaudePaths;
//!
//! let p = ClaudePaths::new().expect( "HOME must be set" );
//! println!( "accounts: {}", p.accounts_dir().display() );
//! ```

pub use claude_common::ClaudePaths;