summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Unterwaditzer <markus@unterwaditzer.net>2018-04-27 19:26:55 +0200
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2018-04-27 19:26:55 +0200
commit647c256cfb10cd05e68309c1754dc870db285942 (patch)
tree0b853572c956e56bc676366c6a14b281004f7f22
parent9c6cb15c7edf42bf1ef79c7eb3c241544209fe24 (diff)
Fix API docs
-rw-r--r--README.md15
-rw-r--r--src/lib.rs4
2 files changed, 3 insertions, 16 deletions
diff --git a/README.md b/README.md
index ee91d33..b285dd2 100644
--- a/README.md
+++ b/README.md
@@ -11,20 +11,7 @@ This is a parser and generator for the
- Consequently, the API is still unstable, and it's hard to predict how it
would have to change if new RFCs are implemented.
-Nevertheless, I use it for [a simple addressbook
-script](https://github.com/untitaker/mates.rs), and you're encouraged to test
-it and give feedback in the issue tracker.
-
Sourcecode is available on [GitHub](https://github.com/untitaker/rust-vobject).
-The API documentation is [online
-available](http://rust-vobject.unterwaditzer.net), or you can build it
-yourself:
-
- make docs
-
-The testsuite can be run with:
-
- make test
-
+The API documentation is [online available](https://docs.rs/vobject/).
It is licensed under MIT, see `LICENSE`.
diff --git a/src/lib.rs b/src/lib.rs
index 737a41f..90e3205 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,5 +1,3 @@
-// DOCS
-
#[macro_use]
extern crate error_chain;
@@ -24,3 +22,5 @@ pub use property::Property;
pub use property::escape_chars;
pub use property::unescape_chars;
+pub use vcard::Vcard;
+pub use icalendar::ICalendar;