lal 3.8.0

A strict, language-agnostic build system and dependency manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use self::traits::{BackendConfiguration, Backend, CachedBackend, Component};

pub use self::artifactory::{ArtifactoryConfig, Credentials, ArtifactoryBackend};
pub use self::local::{LocalConfig, LocalBackend};

// Some special exports for lal upgrade - canonical releases are on artifactory atm
#[cfg(feature = "upgrade")]
pub use self::artifactory::{LatestLal, get_latest_lal_version, http_download_to_path};

mod traits;
mod artifactory;
mod local;
mod download;

#[cfg(feature = "progress")]
mod progress;