fluidattacks-core 0.19.0

Fluid Attacks Core Library
Documentation
#[cfg(feature = "logging")]
pub mod logging;

#[cfg(feature = "serializers")]
pub mod serializers;

#[cfg(feature = "git")]
pub mod git;

// the pure version/CVE-matching core lives in the domain crate; re-export it so
// consumers keep importing `fluidattacks_core::semver::*`
#[cfg(feature = "semver")]
pub use fluidattacks_core_domain::semver;

#[cfg(feature = "testing")]
pub mod testing;

#[cfg(feature = "sarif")]
pub mod sarif;

#[cfg(feature = "auth")]
pub mod auth;

#[cfg(feature = "git")]
pub use git::clone::clone_to_temp;
#[cfg(feature = "git")]
pub use git::download::download_and_extract_repo;
#[cfg(feature = "git")]
pub use git::ops::reset_repo;
#[cfg(feature = "git")]
pub use git::types::*;
#[cfg(feature = "git")]
pub use git::warp::get_virtual_network_id;