blob: 0ca82436906936a22e20d74763305fff807cafb9 (
plain) (
tree)
|
|
#![feature(type_alias_impl_trait)]
#![feature(async_closure)]
#![feature(trait_alias)]
// utils
pub mod error;
pub mod xml;
// webdav
pub mod types;
pub mod encoder;
pub mod decoder;
// calendar
pub mod caltypes;
pub mod calencoder;
pub mod caldecoder;
// wip
mod acltypes;
mod versioningtypes;
// final type
pub mod realization;
|