aboutsummaryrefslogtreecommitdiff
path: root/aero-dav/src/lib.rs
blob: 7507ddcf76760573de6146bf8d531ffdecb8315b (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
26
27
28
#![feature(type_alias_impl_trait)]
#![feature(async_closure)]
#![feature(trait_alias)]

// utils
pub mod error;
pub mod xml;

// webdav
pub mod decoder;
pub mod encoder;
pub mod types;

// calendar
pub mod caldecoder;
pub mod calencoder;
pub mod caltypes;

// acl (wip)
pub mod acldecoder;
pub mod aclencoder;
pub mod acltypes;

// versioning (wip)
mod versioningtypes;

// final type
pub mod realization;