mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
added documentation url and fixed a dumb mistake
This commit is contained in:
parent
a047fdd870
commit
112b3fa0c8
2 changed files with 4 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "minidom"
|
name = "minidom"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["lumi <lumi@pew.im>"]
|
authors = ["lumi <lumi@pew.im>"]
|
||||||
description = "A small, simple DOM implementation on top of xml-rs."
|
description = "A small, simple DOM implementation on top of xml-rs."
|
||||||
homepage = "https://gitlab.com/lumi/minidom-rs"
|
homepage = "https://gitlab.com/lumi/minidom-rs"
|
||||||
repository = "https://gitlab.com/lumi/minidom-rs"
|
repository = "https://gitlab.com/lumi/minidom-rs"
|
||||||
|
documentation = "https://docs.rs/minidom"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["xml"]
|
keywords = ["xml"]
|
||||||
license = "LGPL-3.0+"
|
license = "LGPL-3.0+"
|
||||||
|
|
|
@ -56,11 +56,10 @@
|
||||||
//!
|
//!
|
||||||
//! # Usage
|
//! # Usage
|
||||||
//!
|
//!
|
||||||
//! To use `minidom`, add this to your `Cargo.toml`:
|
//! To use `minidom`, add this to your `Cargo.toml` under `dependencies`:
|
||||||
//!
|
//!
|
||||||
//! ```toml,ignore
|
//! ```toml,ignore
|
||||||
//! [dependencies.minidom]
|
//! minidom = "*"
|
||||||
//! git = "https://gitlab.com/lumi/minidom-rs.git"
|
|
||||||
//! ```
|
//! ```
|
||||||
|
|
||||||
extern crate xml;
|
extern crate xml;
|
||||||
|
|
Loading…
Reference in a new issue