diff --git a/Cargo.toml b/Cargo.toml index 96a4a754..83d1d990 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "A serialization/deserialization framework" repository = "https://github.com/erickt/rust-serde" +documentation = "http://erickt.github.io/rust-serde/serde" [dependencies] num = "*" diff --git a/src/lib.rs b/src/lib.rs index 4d916298..5359d69d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,6 +5,7 @@ //! handshake protocol between serializers and serializees can be completely optimized away, //! leaving serde to perform roughly the same speed as a hand written serializer for a specific //! type. +#![doc(html_root_url="http://erickt.github.io/rust-serde")] extern crate num;