mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-13 14:24:46 +10:00
15 lines
274 B
Rust
15 lines
274 B
Rust
#![deny(clippy::all)]
|
|
#![feature(impl_trait_in_bindings)]
|
|
#![feature(nonpoison_mutex)]
|
|
#![feature(sync_nonpoison)]
|
|
pub mod file_utils;
|
|
pub mod manifest;
|
|
pub mod ssl;
|
|
pub mod versions;
|
|
pub mod vm;
|
|
|
|
pub use manifest::{CHUNK_SIZE, MAX_FILE_COUNT};
|
|
|
|
#[cfg(test)]
|
|
pub mod tests;
|