assemble-core 0.2.0

The core crate of the assemble-rs package
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Describe mechanisms to enable projects to have dependencies

mod dependency_type;
mod registry_container;
mod resolved_dependency;
mod unresolved_dependency;

pub mod artifact_request;
pub mod configurations;
pub mod dependency_container;
pub mod file_dependency;
pub mod project_dependency;

pub use dependency_type::*;
pub use registry_container::*;
pub use resolved_dependency::*;
pub use unresolved_dependency::*;