diff options
author | Nadrieril | 2019-04-15 18:00:43 +0200 |
---|---|---|
committer | Nadrieril | 2019-04-15 18:01:45 +0200 |
commit | 2e6a2955e45e33aed285224eec291500375e5eb5 (patch) | |
tree | 7407c0ee6375f2eedfc8d4e0cff35ec19b7e8142 /abnf_to_pest | |
parent | 7f0d5d7b697505d23afa4955b64daf6af52d2e1a (diff) |
Seriously, trailing slash?
Diffstat (limited to 'abnf_to_pest')
-rw-r--r-- | abnf_to_pest/Cargo.toml | 4 | ||||
-rw-r--r-- | abnf_to_pest/src/lib.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index 4e32986..9573c67 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "abnf_to_pest" -version = "0.1.0" # remember to update html_root_url +version = "0.1.1" # remember to update html_root_url authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] license = "MIT OR Apache-2.0" edition = "2018" description = "A tiny crate that helps convert ABNF grammars to pest" readme = "README.md" repository = "https://github.com/Nadrieril/dhall-rust" -documentation = "https://docs.rs/abnf_to_pest/" +documentation = "https://docs.rs/abnf_to_pest" [lib] doctest = false diff --git a/abnf_to_pest/src/lib.rs b/abnf_to_pest/src/lib.rs index a44caf3..625798b 100644 --- a/abnf_to_pest/src/lib.rs +++ b/abnf_to_pest/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/abnf_to_pest/0.1.0")] +#![doc(html_root_url = "https://docs.rs/abnf_to_pest/0.1.1")] //! A tiny crate that helps convert ABNF grammars to [pest][pest]. //! |