diff --git a/README.md b/README.md index 33a1a04d..8becc1e1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ network. [Rust]: https://rust-lang.org/ [Matrix]: https://matrix.org/ -[website]: https://ruma.io/ +[website]: https://ruma.dev/ [chat]: https://matrix.to/#/#ruma:matrix.org [docs]: https://docs.rs/ruma/ [unstable-docs]: https://docs.ruma.dev/ruma/ diff --git a/crates/ruma-appservice-api/Cargo.toml b/crates/ruma-appservice-api/Cargo.toml index a0596b0e..0bc44f1c 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://ruma.io/" +homepage = "https://ruma.dev/" 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 25af421d..a9cb2035 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://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 77acf52a..00d30782 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://ruma.io/" +homepage = "https://ruma.dev/" 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 47d68bed..ce16bc09 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://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 decd4c0d..78c53a83 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://ruma.io/" +homepage = "https://ruma.dev/" 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 69d6eae2..2fcf4122 100644 --- a/crates/ruma-client/src/lib.rs +++ b/crates/ruma-client/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 78a1e5cf..32323cef 100644 --- a/crates/ruma-common/Cargo.toml +++ b/crates/ruma-common/Cargo.toml @@ -2,7 +2,7 @@ name = "ruma-common" version = "0.12.1" description = "Common types for other ruma crates." -homepage = "https://ruma.io/" +homepage = "https://ruma.dev/" 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 87d2c2d1..488088c4 100644 --- a/crates/ruma-common/src/lib.rs +++ b/crates/ruma-common/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 5b43e226..f3952851 100644 --- a/crates/ruma-events/Cargo.toml +++ b/crates/ruma-events/Cargo.toml @@ -2,7 +2,7 @@ name = "ruma-events" version = "0.27.11" description = "Serializable types for the events in the Matrix specification." -homepage = "https://ruma.io/" +homepage = "https://ruma.dev/" keywords = ["matrix", "chat", "messaging", "ruma"] license = "MIT" readme = "README.md" diff --git a/crates/ruma-events/src/lib.rs b/crates/ruma-events/src/lib.rs index f3de1a23..bb2a90b8 100644 --- a/crates/ruma-events/src/lib.rs +++ b/crates/ruma-events/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/images/logo.png")] //! (De)serializable types for the events in the [Matrix](https://matrix.org) specification. //! These types are used by other Ruma crates. //! diff --git a/crates/ruma-federation-api/Cargo.toml b/crates/ruma-federation-api/Cargo.toml index 388522ea..d5ea4f3c 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://ruma.io/" +homepage = "https://ruma.dev/" 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 e79d94a3..51dabf3b 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://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 54674c8b..2c7c1269 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://ruma.io/" +homepage = "https://ruma.dev/" 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 8f5cdf24..5554f14c 100644 --- a/crates/ruma-html/src/lib.rs +++ b/crates/ruma-html/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 1863b00a..2a82cec8 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://ruma.io/" +homepage = "https://ruma.dev/" 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 82ae9c02..d62234c9 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://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 3e6bfc1b..60c82ace 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://ruma.io/" +homepage = "https://ruma.dev/" 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 03e8a5da..c6a423f9 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://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 91c7bbe7..d18d2bc2 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://ruma.io/" +homepage = "https://ruma.dev/" 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 128b4019..53d1c486 100644 --- a/crates/ruma-macros/src/lib.rs +++ b/crates/ruma-macros/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 61d1b5fb..0b470287 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://ruma.io/" +homepage = "https://ruma.dev/" 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 738f66ec..3b3e0e0d 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://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 0944dcb5..de3f06ce 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://ruma.io/" +homepage = "https://ruma.dev/" 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 f72de167..7e6b9859 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://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 d3e399f9..88793530 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://ruma.io/" +homepage = "https://ruma.dev/" 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 cf7e3b37..43f2c222 100644 --- a/crates/ruma-signatures/src/lib.rs +++ b/crates/ruma-signatures/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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 015055cd..8f0cc587 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://ruma.io/" +homepage = "https://ruma.dev/" repository = "https://github.com/ruma/ruma" readme = "README.md" license = "MIT" diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index c7d0bfb5..30a4a1a9 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://ruma.io/" +homepage = "https://ruma.dev/" 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 685bd67d..d627f66c 100644 --- a/crates/ruma/src/lib.rs +++ b/crates/ruma/src/lib.rs @@ -1,5 +1,5 @@ -#![doc(html_favicon_url = "https://ruma.io/favicon.ico")] -#![doc(html_logo_url = "https://ruma.io/images/logo.png")] +#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")] +#![doc(html_logo_url = "https://ruma.dev/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