aerogramme/aero-dav/src/lib.rs

36 lines
542 B
Rust
Raw Permalink Normal View History

2024-03-08 07:17:03 +00:00
#![feature(type_alias_impl_trait)]
#![feature(async_closure)]
#![feature(trait_alias)]
// utils
pub mod error;
pub mod xml;
// webdav
pub mod decoder;
2024-05-16 15:38:34 +00:00
pub mod encoder;
pub mod types;
2024-03-08 07:17:03 +00:00
// calendar
pub mod caldecoder;
2024-05-16 15:38:34 +00:00
pub mod calencoder;
pub mod caltypes;
2024-03-08 07:17:03 +00:00
2024-05-27 16:16:53 +00:00
// acl (partial)
2024-03-19 16:36:32 +00:00
pub mod acldecoder;
2024-05-16 15:38:34 +00:00
pub mod aclencoder;
pub mod acltypes;
2024-03-19 16:36:32 +00:00
2024-05-27 16:16:53 +00:00
// versioning (partial)
pub mod versioningdecoder;
pub mod versioningencoder;
pub mod versioningtypes;
// sync
pub mod syncdecoder;
pub mod syncencoder;
pub mod synctypes;
2024-03-08 07:17:03 +00:00
// final type
pub mod realization;