-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathlib.rs
More file actions
35 lines (30 loc) · 1002 Bytes
/
lib.rs
File metadata and controls
35 lines (30 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
pub use http_client::{Api, ResponseErrorLogger, RetryConfig, build_auth_http_client, build_http_client};
pub use interface::Client;
#[cfg(not(target_family = "wasm"))]
pub use local_client::LocalClient;
#[cfg(not(target_family = "wasm"))]
pub use output_provider::*;
pub use remote_client::RemoteClient;
use tracing::Level;
pub use crate::error::CasClientError;
pub mod adaptive_concurrency;
#[cfg(not(target_family = "wasm"))]
mod download_utils;
mod error;
pub mod exports;
pub mod http_client;
mod interface;
#[cfg(not(target_family = "wasm"))]
mod local_client;
#[cfg(not(target_family = "wasm"))]
pub mod local_server;
#[cfg(not(target_family = "wasm"))]
mod output_provider;
pub mod remote_client;
pub mod retry_wrapper;
pub mod upload_progress_stream;
pub mod client_testing_utils;
#[cfg(not(feature = "elevated_information_level"))]
pub const INFORMATION_LOG_LEVEL: Level = Level::DEBUG;
#[cfg(feature = "elevated_information_level")]
pub const INFORMATION_LOG_LEVEL: Level = Level::INFO;