aboutsummaryrefslogtreecommitdiff
path: root/aero-dav/src/lib.rs
blob: 6bfbf62af3c1d63a8867fe92286dd49655fb4f24 (plain) (blame)
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
#![feature(type_alias_impl_trait)]
#![feature(async_fn_in_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;