pakx-core 0.1.6

pakx core — manifest, lockfile, resolver, installer logic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Lockfile types and (de)serialization for `agents.lock`.

pub mod io;
pub mod parse;
pub mod schema;
pub mod write;

pub use io::{read_from, write_to};
pub use parse::parse_lockfile;
pub use schema::{
    Integrity, LockEntry, Lockfile, RegistrySource, LOCKFILE_VERSION, REGISTRY_SOURCES,
};
pub use write::write_lockfile;