diff --git a/README.md b/README.md index 21e5e69a..50542bf2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ network. [Rust]: https://rust-lang.org/ [Matrix]: https://matrix.org/ -[website]: https://www.ruma.io/ +[website]: https://ruma.io/ [chat]: https://matrix.to/#/#ruma:matrix.org [docs]: https://docs.rs/ruma/ [unstable-docs]: https://docs.ruma.io/ruma/ diff --git a/crates/ruma-appservice-api/Cargo.toml b/crates/ruma-appservice-api/Cargo.toml index 75c85906..a0596b0e 100644 --- a/crates/ruma-appservice-api/Cargo.toml +++ b/crates/ruma-appservice-api/Cargo.toml @@ -1,7 +1,7 @@ [package] categories = ["api-bindings", "web-programming"] description = "Types for the endpoints in the Matrix application service API." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" name = "ruma-appservice-api" diff --git a/crates/ruma-appservice-api/src/lib.rs b/crates/ruma-appservice-api/src/lib.rs index a8421d9a..f6f74d11 100644 --- a/crates/ruma-appservice-api/src/lib.rs +++ b/crates/ruma-appservice-api/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! (De)serializable types for the [Matrix Application Service API][appservice-api]. //! These types can be shared by application service and server code. //! diff --git a/crates/ruma-client-api/Cargo.toml b/crates/ruma-client-api/Cargo.toml index 9b4218e7..5de81c95 100644 --- a/crates/ruma-client-api/Cargo.toml +++ b/crates/ruma-client-api/Cargo.toml @@ -1,7 +1,7 @@ [package] categories = ["api-bindings", "web-programming"] description = "Types for the endpoints in the Matrix client-server API." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" name = "ruma-client-api" diff --git a/crates/ruma-client-api/src/lib.rs b/crates/ruma-client-api/src/lib.rs index 47d9a375..47d68bed 100644 --- a/crates/ruma-client-api/src/lib.rs +++ b/crates/ruma-client-api/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! (De)serializable types for the [Matrix Client-Server API][client-api]. //! These types can be shared by client and server code. //! diff --git a/crates/ruma-client/Cargo.toml b/crates/ruma-client/Cargo.toml index 558a2b65..66cd0b06 100644 --- a/crates/ruma-client/Cargo.toml +++ b/crates/ruma-client/Cargo.toml @@ -1,7 +1,7 @@ [package] categories = ["api-bindings", "web-programming"] description = "A Matrix client library." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" name = "ruma-client" diff --git a/crates/ruma-client/src/lib.rs b/crates/ruma-client/src/lib.rs index 5ff83d90..e60455f8 100644 --- a/crates/ruma-client/src/lib.rs +++ b/crates/ruma-client/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! A minimal [Matrix](https://matrix.org/) client library. //! //! # Usage diff --git a/crates/ruma-common/Cargo.toml b/crates/ruma-common/Cargo.toml index 4029612e..5d1537a2 100644 --- a/crates/ruma-common/Cargo.toml +++ b/crates/ruma-common/Cargo.toml @@ -2,7 +2,7 @@ name = "ruma-common" version = "0.12.0" description = "Common types for other ruma crates." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" readme = "README.md" diff --git a/crates/ruma-common/src/lib.rs b/crates/ruma-common/src/lib.rs index 7198397d..87d2c2d1 100644 --- a/crates/ruma-common/src/lib.rs +++ b/crates/ruma-common/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! Common types for the Ruma crates. #![recursion_limit = "1024"] diff --git a/crates/ruma-events/Cargo.toml b/crates/ruma-events/Cargo.toml index 2fde26b3..d8d385f5 100644 --- a/crates/ruma-events/Cargo.toml +++ b/crates/ruma-events/Cargo.toml @@ -2,7 +2,7 @@ name = "ruma-events" version = "0.27.4" description = "Serializable types for the events in the Matrix specification." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" readme = "README.md" diff --git a/crates/ruma-federation-api/Cargo.toml b/crates/ruma-federation-api/Cargo.toml index 2ca6fd42..388522ea 100644 --- a/crates/ruma-federation-api/Cargo.toml +++ b/crates/ruma-federation-api/Cargo.toml @@ -1,7 +1,7 @@ [package] categories = ["api-bindings", "web-programming"] description = "Types for the endpoints in the Matrix server-server API." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" name = "ruma-federation-api" diff --git a/crates/ruma-federation-api/src/lib.rs b/crates/ruma-federation-api/src/lib.rs index bdcd9005..e79d94a3 100644 --- a/crates/ruma-federation-api/src/lib.rs +++ b/crates/ruma-federation-api/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! (De)serializable types for the [Matrix Server-Server API][federation-api]. //! These types are used by server code. //! diff --git a/crates/ruma-html/Cargo.toml b/crates/ruma-html/Cargo.toml index e792c38f..54674c8b 100644 --- a/crates/ruma-html/Cargo.toml +++ b/crates/ruma-html/Cargo.toml @@ -2,7 +2,7 @@ name = "ruma-html" version = "0.1.0" description = "Opinionated HTML parsing and manipulating." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "ruma", "html", "parser"] license = "MIT" readme = "README.md" diff --git a/crates/ruma-html/src/lib.rs b/crates/ruma-html/src/lib.rs index 71486285..8f5cdf24 100644 --- a/crates/ruma-html/src/lib.rs +++ b/crates/ruma-html/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! Opinionated HTML parsing and manipulating library. //! //! Like the rest of the Ruma crates, this crate is primarily meant to be used for diff --git a/crates/ruma-identifiers-validation/Cargo.toml b/crates/ruma-identifiers-validation/Cargo.toml index 7a00394f..1863b00a 100644 --- a/crates/ruma-identifiers-validation/Cargo.toml +++ b/crates/ruma-identifiers-validation/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ruma-identifiers-validation" description = "Validation logic for ruma-common and ruma-macros" -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" repository = "https://github.com/ruma/ruma" license = "MIT" version = "0.9.3" diff --git a/crates/ruma-identifiers-validation/src/lib.rs b/crates/ruma-identifiers-validation/src/lib.rs index 87301511..82ae9c02 100644 --- a/crates/ruma-identifiers-validation/src/lib.rs +++ b/crates/ruma-identifiers-validation/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] pub mod client_secret; pub mod device_key_id; diff --git a/crates/ruma-identity-service-api/Cargo.toml b/crates/ruma-identity-service-api/Cargo.toml index df723e1c..3e6bfc1b 100644 --- a/crates/ruma-identity-service-api/Cargo.toml +++ b/crates/ruma-identity-service-api/Cargo.toml @@ -2,7 +2,7 @@ name = "ruma-identity-service-api" version = "0.8.0" description = "Types for the endpoints in the Matrix identity service API." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" readme = "README.md" diff --git a/crates/ruma-identity-service-api/src/lib.rs b/crates/ruma-identity-service-api/src/lib.rs index d78b474a..03e8a5da 100644 --- a/crates/ruma-identity-service-api/src/lib.rs +++ b/crates/ruma-identity-service-api/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! (De)serializable types for the [Matrix Identity Service API][identity-api]. //! These types can be shared by client and identity service code. //! diff --git a/crates/ruma-macros/Cargo.toml b/crates/ruma-macros/Cargo.toml index 8f31ac29..91c7bbe7 100644 --- a/crates/ruma-macros/Cargo.toml +++ b/crates/ruma-macros/Cargo.toml @@ -1,7 +1,7 @@ [package] categories = ["api-bindings", "web-programming"] description = "Procedural macros used by the Ruma crates." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" name = "ruma-macros" diff --git a/crates/ruma-macros/src/lib.rs b/crates/ruma-macros/src/lib.rs index f3ffdfb6..7b46debb 100644 --- a/crates/ruma-macros/src/lib.rs +++ b/crates/ruma-macros/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! Procedural macros used by ruma crates. //! //! See the documentation for the individual macros for usage details. diff --git a/crates/ruma-push-gateway-api/Cargo.toml b/crates/ruma-push-gateway-api/Cargo.toml index d776af93..61d1b5fb 100644 --- a/crates/ruma-push-gateway-api/Cargo.toml +++ b/crates/ruma-push-gateway-api/Cargo.toml @@ -2,7 +2,7 @@ name = "ruma-push-gateway-api" version = "0.8.0" description = "Types for the endpoints in the Matrix push gateway API." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" readme = "README.md" diff --git a/crates/ruma-push-gateway-api/src/lib.rs b/crates/ruma-push-gateway-api/src/lib.rs index 99ad3ac1..738f66ec 100644 --- a/crates/ruma-push-gateway-api/src/lib.rs +++ b/crates/ruma-push-gateway-api/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! (De)serializable types for the [Matrix Push Gateway API][push-api]. //! These types can be shared by push gateway and server code. //! diff --git a/crates/ruma-server-util/Cargo.toml b/crates/ruma-server-util/Cargo.toml index 0f8fc592..0944dcb5 100644 --- a/crates/ruma-server-util/Cargo.toml +++ b/crates/ruma-server-util/Cargo.toml @@ -1,7 +1,7 @@ [package] categories = ["api-bindings", "web-programming"] description = "Utilities for implementing Matrix server applications." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" name = "ruma-server-util" diff --git a/crates/ruma-server-util/src/lib.rs b/crates/ruma-server-util/src/lib.rs index 18e9e613..f72de167 100644 --- a/crates/ruma-server-util/src/lib.rs +++ b/crates/ruma-server-util/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! Collection of helpers for implementing Matrix homeservers using Ruma. #![warn(missing_docs)] diff --git a/crates/ruma-signatures/Cargo.toml b/crates/ruma-signatures/Cargo.toml index 888941ed..d3e399f9 100644 --- a/crates/ruma-signatures/Cargo.toml +++ b/crates/ruma-signatures/Cargo.toml @@ -1,7 +1,7 @@ [package] categories = ["api-bindings", "cryptography"] description = "Digital signatures according to the Matrix specification." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma", "cryptography"] license = "MIT" name = "ruma-signatures" diff --git a/crates/ruma-signatures/src/lib.rs b/crates/ruma-signatures/src/lib.rs index aad9e784..cf7e3b37 100644 --- a/crates/ruma-signatures/src/lib.rs +++ b/crates/ruma-signatures/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! Digital signatures according to the [Matrix](https://matrix.org/) specification. //! //! Digital signatures are used by Matrix homeservers to verify the authenticity of events in the diff --git a/crates/ruma-state-res/Cargo.toml b/crates/ruma-state-res/Cargo.toml index 12a9801a..015055cd 100644 --- a/crates/ruma-state-res/Cargo.toml +++ b/crates/ruma-state-res/Cargo.toml @@ -3,7 +3,7 @@ name = "ruma-state-res" categories = ["api-bindings", "web-programming"] keywords = ["matrix", "chat", "ruma"] description = "An abstraction for Matrix state resolution." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" repository = "https://github.com/ruma/ruma" readme = "README.md" license = "MIT" diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index c1ea50b0..e81e4206 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -3,7 +3,7 @@ name = "ruma" categories = ["api-bindings", "web-programming"] keywords = ["matrix", "chat", "messaging", "ruma"] description = "Types and traits for working with the Matrix protocol." -homepage = "https://www.ruma.io/" +homepage = "https://ruma.io/" repository = "https://github.com/ruma/ruma" readme = "README.md" license = "MIT" diff --git a/crates/ruma/src/lib.rs b/crates/ruma/src/lib.rs index 3b4c262c..ed425677 100644 --- a/crates/ruma/src/lib.rs +++ b/crates/ruma/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] +#![doc(html_logo_url = "https://ruma.io/images/logo.png")] //! Types and traits for working with the [Matrix](https://matrix.org) protocol. //! //! This crate re-exports things from all of the other ruma crates so you don't