#![allow(clippy::too_many_arguments)]
mod api;
mod blocking_thread;
mod capped_read;
mod compression_limits;
mod decode;
mod factory;
mod limits;
mod magic;
#[cfg(any(
feature = "azure",
feature = "s3",
feature = "gcs",
feature = "slack",
feature = "github",
feature = "gitlab",
feature = "bitbucket"
))]
mod parallel_fetch;
#[cfg(any(
feature = "git",
feature = "docker",
feature = "github",
feature = "gitlab",
feature = "bitbucket"
))]
mod process_excerpt;
mod safe_read;
mod skip;
pub(crate) mod timeouts;
#[cfg(any(
feature = "web",
feature = "github",
feature = "gitlab",
feature = "bitbucket"
))]
mod url_redaction;
pub mod http;
#[cfg(feature = "binary")]
mod binary;
#[cfg(feature = "bitbucket")]
mod bitbucket_workspace;
#[cfg(any(feature = "azure", feature = "s3", feature = "gcs"))]
mod cloud;
#[cfg(feature = "docker")]
mod docker;
mod filesystem;
#[cfg(feature = "gcs")]
mod gcs;
#[cfg(feature = "git")]
mod git;
#[cfg(feature = "github")]
mod github_collaboration;
#[cfg(feature = "github")]
mod github_org;
#[cfg(feature = "gitlab")]
mod gitlab_group;
mod har;
#[cfg(any(feature = "github", feature = "gitlab", feature = "bitbucket"))]
mod hosted_git;
#[cfg(feature = "s3")]
mod s3;
#[cfg(feature = "slack")]
mod slack;
mod stdin;
mod strings;
#[cfg(feature = "web")]
mod web;
pub use api::*;
pub(crate) use skip::{
acquire_scan_read_lease, attach_scan_lease, enter_exclusive_scan_scope, gate_scan,
record_skip_event, record_skip_events, reset_skip_counters, SourceSkipEvent,
};
pub fn default_exclude_dir_components() -> &'static [String] {
filesystem::default_exclude_dirs()
}
#[doc(hidden)]
pub use testing_facade::testing;
mod testing_facade;