diff --git a/Cargo.toml b/Cargo.toml index 7b9131611d368c24e54becdc80db46c17ee42076..a28773a998f9f0e29dc2467bd5a8c4267e7188b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "minidom" -version = "0.1.0" +version = "0.1.1" authors = ["lumi "] description = "A small, simple DOM implementation on top of xml-rs." homepage = "https://gitlab.com/lumi/minidom-rs" repository = "https://gitlab.com/lumi/minidom-rs" +documentation = "https://docs.rs/minidom" readme = "README.md" keywords = ["xml"] license = "LGPL-3.0+" diff --git a/src/lib.rs b/src/lib.rs index c5f8f9abbaf2ff246a3e67f389a451d01df02d06..9dfed4489b2e9282bc47e1648424e21b0394dd35 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -56,11 +56,10 @@ //! //! # Usage //! -//! To use `minidom`, add this to your `Cargo.toml`: +//! To use `minidom`, add this to your `Cargo.toml` under `dependencies`: //! //! ```toml,ignore -//! [dependencies.minidom] -//! git = "https://gitlab.com/lumi/minidom-rs.git" +//! minidom = "*" //! ``` extern crate xml;