mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 20:32:48 +00:00
16 lines
327 B
Rust
16 lines
327 B
Rust
#![warn(clippy::all, clippy::pedantic, clippy::nursery)]
|
|
#![allow(clippy::missing_errors_doc, clippy::missing_panics_doc)]
|
|
mod timestamp;
|
|
mod timezone;
|
|
pub use timestamp::*;
|
|
pub use timezone::*;
|
|
|
|
mod icalendar;
|
|
pub use icalendar::*;
|
|
|
|
mod error;
|
|
pub use error::Error;
|
|
|
|
mod address_object;
|
|
pub use address_object::AddressObject;
|