diff --git a/Cargo.toml b/Cargo.toml index afd1cd0..8471ec9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genco" -version = "0.17.7" +version = "0.17.8" authors = ["John-John Tedro "] edition = "2018" rust-version = "1.58" @@ -14,7 +14,7 @@ keywords = ["code-generation", "template"] categories = ["template-engine"] [dependencies] -genco-macros = { path = "./genco-macros", version = "=0.17.7" } +genco-macros = { path = "./genco-macros", version = "=0.17.8" } relative-path = "1.2.0" smallvec = "1.4.0" diff --git a/README.md b/README.md index 8548b03..ba593f4 100644 --- a/README.md +++ b/README.md @@ -127,31 +127,31 @@ fn main() {
-[rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html -[rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs -[java]: https://docs.rs/genco/latest/genco/lang/java/index.html -[java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs -[c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html +[c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs +[c]: https://docs.rs/genco/latest/genco/lang/c/index.html [c#-example]: https://github.com/udoprog/genco/blob/master/examples/csharp.rs -[go]: https://docs.rs/genco/latest/genco/lang/go/index.html -[go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs -[dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html +[c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html [dart-example]: https://github.com/udoprog/genco/blob/master/examples/dart.rs -[js]: https://docs.rs/genco/latest/genco/lang/js/index.html +[dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html +[go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs +[go]: https://docs.rs/genco/latest/genco/lang/go/index.html +[impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html +[import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports +[indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements +[interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation +[java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs +[java]: https://docs.rs/genco/latest/genco/lang/java/index.html [js-example]: https://github.com/udoprog/genco/blob/master/examples/js.rs -[c]: https://docs.rs/genco/latest/genco/lang/c/index.html -[c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs -[python]: https://docs.rs/genco/latest/genco/lang/python/index.html +[js]: https://docs.rs/genco/latest/genco/lang/js/index.html +[Open an issue!]: https://github.com/udoprog/genco/issues/new [python-example]: https://github.com/udoprog/genco/blob/master/examples/python.rs -[solve namespace conflicts]: https://docs.rs/genco/latest/genco/lang/csharp/fn.import.html -[indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements -[token streams]: https://docs.rs/genco/latest/genco/tokens/struct.Tokens.html -[import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports +[python]: https://docs.rs/genco/latest/genco/lang/python/index.html [quote strings]: https://docs.rs/genco/latest/genco/macro.quote.html#string-quoting -[interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation -[whitespace detection]: https://docs.rs/genco/latest/genco/macro.quote.html#whitespace-detection -[quote!]: https://docs.rs/genco/latest/genco/macro.quote.html [quote_in!]: https://docs.rs/genco/latest/genco/macro.quote_in.html -[impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html +[quote!]: https://docs.rs/genco/latest/genco/macro.quote.html [quoted()]: https://docs.rs/genco/latest/genco/tokens/fn.quoted.html -[Open an issue!]: https://github.com/udoprog/genco/issues/new +[rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs +[rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html +[solve namespace conflicts]: https://docs.rs/genco/latest/genco/lang/csharp/fn.import.html +[token streams]: https://docs.rs/genco/latest/genco/tokens/struct.Tokens.html +[whitespace detection]: https://docs.rs/genco/latest/genco/macro.quote.html#whitespace-detection diff --git a/genco-macros/Cargo.toml b/genco-macros/Cargo.toml index 549f27b..3d48365 100644 --- a/genco-macros/Cargo.toml +++ b/genco-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genco-macros" -version = "0.17.7" +version = "0.17.8" authors = ["John-John Tedro "] edition = "2018" rust-version = "1.58" diff --git a/src/lib.rs b/src/lib.rs index 5285057..15e49fb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -125,32 +125,34 @@ //! //!
//! -//! [rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html -//! [rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs -//! [java]: https://docs.rs/genco/latest/genco/lang/java/index.html -//! [java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs -//! [c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html +//! [c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs +//! [c]: https://docs.rs/genco/latest/genco/lang/c/index.html //! [c#-example]: https://github.com/udoprog/genco/blob/master/examples/csharp.rs -//! [go]: https://docs.rs/genco/latest/genco/lang/go/index.html -//! [go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs -//! [dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html +//! [c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html //! [dart-example]: https://github.com/udoprog/genco/blob/master/examples/dart.rs -//! [js]: https://docs.rs/genco/latest/genco/lang/js/index.html +//! [dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html +//! [go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs +//! [go]: https://docs.rs/genco/latest/genco/lang/go/index.html +//! [impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html +//! [import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports +//! [indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements +//! [interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation +//! [java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs +//! [java]: https://docs.rs/genco/latest/genco/lang/java/index.html //! [js-example]: https://github.com/udoprog/genco/blob/master/examples/js.rs -//! [c]: https://docs.rs/genco/latest/genco/lang/c/index.html -//! [c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs -//! [python]: https://docs.rs/genco/latest/genco/lang/python/index.html +//! [js]: https://docs.rs/genco/latest/genco/lang/js/index.html +//! [Open an issue!]: https://github.com/udoprog/genco/issues/new //! [python-example]: https://github.com/udoprog/genco/blob/master/examples/python.rs +//! [python]: https://docs.rs/genco/latest/genco/lang/python/index.html +//! [quote strings]: https://docs.rs/genco/latest/genco/macro.quote.html#string-quoting +//! [quote_in!]: https://docs.rs/genco/latest/genco/macro.quote_in.html +//! [quote!]: https://docs.rs/genco/latest/genco/macro.quote.html +//! [quoted()]: https://docs.rs/genco/latest/genco/tokens/fn.quoted.html +//! [rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs +//! [rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html //! [solve namespace conflicts]: https://docs.rs/genco/latest/genco/lang/csharp/fn.import.html -//! [indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements //! [token streams]: https://docs.rs/genco/latest/genco/tokens/struct.Tokens.html -//! [import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports -//! [quote strings]: https://docs.rs/genco/latest/genco/macro.quote.html#string-quoting -//! [interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation //! [whitespace detection]: https://docs.rs/genco/latest/genco/macro.quote.html#whitespace-detection -//! [impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html -//! [quoted()]: https://docs.rs/genco/latest/genco/tokens/fn.quoted.html -//! [Open an issue!]: https://github.com/udoprog/genco/issues/new #![deny(missing_docs)] #![deny(rustdoc::broken_intra_doc_links)]