diff options
Diffstat (limited to '')
-rw-r--r-- | dhall/Cargo.toml | 8 | ||||
-rw-r--r-- | dhall/README.md | 10 | ||||
-rw-r--r-- | dhall/src/lib.rs | 1 | ||||
-rw-r--r-- | dhall_proc_macros/Cargo.toml | 5 | ||||
-rw-r--r-- | dhall_proc_macros/README.md | 7 | ||||
-rw-r--r-- | dhall_proc_macros/src/lib.rs | 1 | ||||
-rw-r--r-- | serde_dhall/Cargo.toml | 6 | ||||
-rw-r--r-- | serde_dhall/src/lib.rs | 1 |
8 files changed, 34 insertions, 5 deletions
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index a93153d..60232be 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "dhall" -version = "0.1.0" +version = "0.1.0" # remember to update html_root_url authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"] license = "BSD-2-Clause" +description = "Implementation of the Dhall configuration language" +readme = "README.md" +repository = "https://github.com/Nadrieril/dhall-rust" edition = "2018" build = "build.rs" @@ -12,9 +15,8 @@ hex = "0.3.2" lazy_static = "1.4.0" percent-encoding = "2.1.0" pest = "2.1" -# pest_consume = { path = "../../pest_consume/pest_consume" } pest_consume = "1.0" -serde = { version = "1.0" } +serde = "1.0" serde_cbor = "0.9.0" smallvec = "1.0.0" take_mut = "0.2.2" diff --git a/dhall/README.md b/dhall/README.md new file mode 100644 index 0000000..e40458a --- /dev/null +++ b/dhall/README.md @@ -0,0 +1,10 @@ +# `dhall` + +Implementation of the Dhall configuration language. +This is an internal crate used for [`serde_dhall`], you probably want to use +that instead. + +The API is very unstable and does not respect semver; +use at your own risk. + +[`serde_dhall`](https://docs.rs/serde_dhall) diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs index 12660b4..54111dd 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -1,3 +1,4 @@ +#![doc(html_root_url = "https://docs.rs/dhall/0.1.0")] #![feature(trace_macros)] #![feature(slice_patterns)] #![feature(never_type)] diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml index b641a39..f9d6e1a 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] diff --git a/dhall_proc_macros/README.md b/dhall_proc_macros/README.md new file mode 100644 index 0000000..2900f0e --- /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. //! diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 9d46822..cc5db01 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "serde_dhall" -version = "0.1.0" +version = "0.1.0" # remember to update html_root_url and README authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] license = "BSD-2-Clause" +description = "Dhall support for serde" +readme = "../README.md" +repository = "https://github.com/Nadrieril/dhall-rust" +keywords = ["serde", "serialization", "dhall"] edition = "2018" [dependencies] diff --git a/serde_dhall/src/lib.rs b/serde_dhall/src/lib.rs index d8a94d1..62c624a 100644 --- a/serde_dhall/src/lib.rs +++ b/serde_dhall/src/lib.rs @@ -1,3 +1,4 @@ +#![doc(html_root_url = "https://docs.rs/serde_dhall/0.1.0")] //! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive //! alternative to JSON and YAML. //! |