vtcode-core 0.103.1

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
10
11
mod cache;
mod lock;
mod paths;
mod time;

pub(crate) use cache::{cache_is_stale, load_json_cache, save_json_cache};
pub(crate) use lock::{create_lock_file, lock_is_active};
#[cfg(test)]
pub(crate) use paths::vtcode_state_dir_from_home;
pub(crate) use paths::{vtcode_state_dir, vtcode_state_dir_or_default};
pub(crate) use time::unix_timestamp_now;