diff options
author | Nadrieril Feneanar | 2019-12-22 00:48:35 +0000 |
---|---|---|
committer | GitHub | 2019-12-22 00:48:35 +0000 |
commit | 06e75c919d999c310f8ca1c151c6a5ad6918ca08 (patch) | |
tree | 849a54821e08c78cbff4965e1a268e050466fa6c /dhall_proc_macros | |
parent | ce74f996808ae84b4967040f3441e1bbba31f506 (diff) | |
parent | 139daf4da23c87366d920cea2775afe11cce7be7 (diff) |
Merge pull request #122 from Nadrieril/publish
Publish to crates.io
Diffstat (limited to '')
-rw-r--r-- | dhall_proc_macros/Cargo.toml | 7 | ||||
-rw-r--r-- | dhall_proc_macros/README.md | 7 | ||||
-rw-r--r-- | dhall_proc_macros/src/lib.rs | 1 |
3 files changed, 13 insertions, 2 deletions
diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml index b641a39..ef8ae6c 100644 --- a/dhall_proc_macros/Cargo.toml +++ b/dhall_proc_macros/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "dhall_proc_macros" -version = "0.1.0" +version = "0.1.0" # remember to update html_root_url authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] license = "BSD-2-Clause" +description = "Macros for dhall" +readme = "README.md" +repository = "https://github.com/Nadrieril/dhall-rust" edition = "2018" [lib] @@ -13,4 +16,4 @@ doctest = false itertools = "0.8.0" quote = "1.0.2" proc-macro2 = "1.0.2" -syn = { version = "1.0.5", features = ["full", "extra-traits"] } +syn = "1.0.5" diff --git a/dhall_proc_macros/README.md b/dhall_proc_macros/README.md new file mode 100644 index 0000000..9f512c6 --- /dev/null +++ b/dhall_proc_macros/README.md @@ -0,0 +1,7 @@ +# `dhall_proc_macros` + +This is an internal crate used for [`serde_dhall`], you probably want to use +that instead. + +[`serde_dhall`]: https://docs.rs/serde_dhall + diff --git a/dhall_proc_macros/src/lib.rs b/dhall_proc_macros/src/lib.rs index 5304429..ce2dcdb 100644 --- a/dhall_proc_macros/src/lib.rs +++ b/dhall_proc_macros/src/lib.rs @@ -1,3 +1,4 @@ +#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.1.0")] //! This crate contains the code-generation primitives for the [dhall-rust][dhall-rust] crate. //! This is highly unstable and breaks regularly; use at your own risk. //! |