Skip to main content

bock_pkg/
lib.rs

1//! Bock pkg — package manager for resolving and fetching Bock dependencies.
2//!
3//! This crate provides:
4//! - Manifest (`bock.package`) parsing and manipulation
5//! - Dependency resolution using the PubGrub algorithm
6//! - Lockfile (`bock.lock`) generation and reading
7//! - High-level commands for `bock pkg add/remove/tree`
8
9pub mod commands;
10pub mod error;
11pub mod install;
12pub mod lockfile;
13pub mod manifest;
14pub mod network;
15pub mod resolver;
16pub mod tree;
17pub mod version;