diff --git a/README.md b/README.md index 81625284..1cad02db 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ You may be looking for: -- [An overview of Serde](http://serde.rs/) -- [Data formats supported by Serde](http://serde.rs/#data-formats) -- [Setting up `#[derive(Serialize, Deserialize)]`](http://serde.rs/codegen.html) -- [Examples](http://serde.rs/examples.html) -- [API documentation](http://docs.serde.rs/serde/) +- [An overview of Serde](https://serde.rs/) +- [Data formats supported by Serde](https://serde.rs/#data-formats) +- [Setting up `#[derive(Serialize, Deserialize)]`](https://serde.rs/codegen.html) +- [Examples](https://serde.rs/examples.html) +- [API documentation](https://docs.serde.rs/serde/) ## Serde in action diff --git a/serde/Cargo.toml b/serde/Cargo.toml index c36f771d..1e741936 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -4,8 +4,9 @@ version = "0.8.2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "A generic serialization/deserialization framework" +homepage = "https://serde.rs" repository = "https://github.com/serde-rs/serde" -documentation = "http://docs.serde.rs/serde/" +documentation = "https://docs.serde.rs/serde/" readme = "../README.md" keywords = ["serde", "serialization"] include = ["Cargo.toml", "src/**/*.rs"] diff --git a/serde/src/lib.rs b/serde/src/lib.rs index 035e25a9..54dcc120 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -9,7 +9,7 @@ //! For a detailed tutorial on the different ways to use serde please check out the //! [github repository](https://github.com/serde-rs/serde) -#![doc(html_root_url="http://docs.serde.rs")] +#![doc(html_root_url="https://docs.serde.rs")] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(feature = "unstable", feature(reflect_marker, unicode, nonzero, plugin, step_trait, zero_one))] #![cfg_attr(feature = "alloc", feature(alloc))] diff --git a/serde_codegen/Cargo.toml b/serde_codegen/Cargo.toml index d247728a..f5b20603 100644 --- a/serde_codegen/Cargo.toml +++ b/serde_codegen/Cargo.toml @@ -4,8 +4,9 @@ version = "0.8.2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Macros to auto-generate implementations for the serde framework" +homepage = "https://serde.rs" repository = "https://github.com/serde-rs/serde" -documentation = "https://github.com/serde-rs/serde" +documentation = "https://serde.rs/codegen.html" keywords = ["serde", "serialization"] build = "build.rs" include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/lib.rs.in"] diff --git a/serde_codegen_internals/Cargo.toml b/serde_codegen_internals/Cargo.toml index 92dba2db..3181eb19 100644 --- a/serde_codegen_internals/Cargo.toml +++ b/serde_codegen_internals/Cargo.toml @@ -4,8 +4,9 @@ version = "0.6.0" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "AST representation used by Serde codegen. Unstable." +homepage = "https://serde.rs" repository = "https://github.com/serde-rs/serde" -documentation = "https://github.com/serde-rs/serde" +documentation = "https://docs.serde.rs/serde_codegen_internals/" keywords = ["serde", "serialization"] include = ["Cargo.toml", "src/**/*.rs"] diff --git a/serde_macros/Cargo.toml b/serde_macros/Cargo.toml index d43b44c4..4f41e676 100644 --- a/serde_macros/Cargo.toml +++ b/serde_macros/Cargo.toml @@ -4,8 +4,9 @@ version = "0.8.2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Macros to auto-generate implementations for the serde framework" +homepage = "https://serde.rs" repository = "https://github.com/serde-rs/serde" -documentation = "https://github.com/serde-rs/serde" +documentation = "https://serde.rs/codegen.html" keywords = ["serde", "serialization"] include = ["Cargo.toml", "src/**/*.rs", "build.rs"] build = "build.rs" diff --git a/serde_test/Cargo.toml b/serde_test/Cargo.toml index 0d2e71e6..4968f5f7 100644 --- a/serde_test/Cargo.toml +++ b/serde_test/Cargo.toml @@ -4,8 +4,9 @@ version = "0.8.2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Token De/Serializer for testing De/Serialize implementations" +homepage = "https://serde.rs" repository = "https://github.com/serde-rs/serde" -documentation = "http://docs.serde.rs/serde/" +documentation = "https://docs.serde.rs/serde_test/" readme = "../README.md" keywords = ["serde", "serialization"] include = ["Cargo.toml", "src/**/*.rs"] diff --git a/testing/Cargo.toml b/testing/Cargo.toml index c80cac39..471ac26d 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -4,8 +4,9 @@ version = "0.8.2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "A generic serialization/deserialization framework" +homepage = "https://serde.rs" repository = "https://github.com/serde-rs/serde" -documentation = "http://docs.serde.rs/serde/" +documentation = "https://docs.serde.rs/serde/" readme = "README.md" keywords = ["serialization"] build = "build.rs"