smb 0.7.1

A Pure Rust SMB Client implementation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(not(feature = "single_threaded"))]
pub mod multi_worker;
#[cfg(feature = "single_threaded")]
pub mod single_worker;
pub mod worker_trait;
#[cfg(not(feature = "single_threaded"))]
pub use multi_worker::*;
#[cfg(feature = "single_threaded")]
pub use single_worker::*;
pub use worker_trait::*;

#[cfg(feature = "single_threaded")]
pub type WorkerImpl = SingleWorker;
#[cfg(not(feature = "single_threaded"))]
pub type WorkerImpl = AsyncWorker;