ninja-core 1.14.1

A powerful, cross-platform package manager and runtime for managing tools and plugins (shurikens)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Common types, configuration, and error handling.
//!
//! This module provides core data structures and functionality used across the Ninja framework:
//!
//! - [`config`]: Global Ninja configuration including registries and settings
//! - [`types`]: Core types like `ShurikenState`, `FieldValue`, and `PlatformPath`
//! - [`error`]: Error types for Shuriken-specific failures
//! - [`registry`]: Registry support for discovering and managing Shurikens

pub mod config;
pub mod error;
pub mod registry;
pub mod types;