rez-next-package 0.3.0

Advanced package management with complete package.py parsing and 100% Rez compatibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Package implementation

mod methods;
pub mod requirement;
mod serialize;
pub mod types;

pub use requirement::PackageRequirement;
pub use types::Package;

#[cfg(test)]
#[path = "tests.rs"]
mod package_tests;