aboutsummaryrefslogtreecommitdiff
path: root/aero-dav/src/lib.rs
blob: 64be929d6f8c5a25497110c578fa31e55027c3fa (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
29
30
31
32
33
34
35
#![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 (partial)
pub mod acldecoder;
pub mod aclencoder;
pub mod acltypes;

// versioning (partial)
pub mod versioningdecoder;
pub mod versioningencoder;
pub mod versioningtypes;

// sync
pub mod syncdecoder;
pub mod syncencoder;
pub mod synctypes;

// final type
pub mod realization;