diff --git a/README.md b/README.md index 549d627..8369838 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,16 @@ Auto implementation of trivial delegation to inner types. +## Status + +v0.0.1, alpha + +Development phase. The author is trying to use it. + +## TODO + +- [ ] Documentation + ## License This repository is distributed under the terms of both the MIT license and the diff --git a/src/lib.rs b/src/lib.rs index c13774e..f94a6ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,15 @@ +//! Auto implementation of trivial delegation to inner types. +//! +//! ## Status +//! +//! v0.0.1, alpha +//! +//! Development phase. The author is trying to use it. +//! +//! ## TODO +//! +//! - [ ] Documentation + mod attr_remover; mod decl_macro; mod derive_delegate_args;