Skip to content

Commit 30367b7

Browse files
Signed-off-by: Francesco Guardiani <[email protected]>
1 parent c253dfe commit 30367b7

File tree

13 files changed

+47
-2
lines changed

13 files changed

+47
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ uuid = { version = "^0.8", features = ["v4", "wasm-bindgen"] }
3737
[dev-dependencies]
3838
rstest = "0.6"
3939
claim = "0.3.1"
40+
version-sync = "^0.9"
4041

4142
[workspace]
4243
members = [

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Note: This project is WIP under active development, hence all APIs are considere
3030
To get started, add the dependency to `Cargo.toml`:
3131

3232
```toml
33+
[dependencies]
3334
cloudevents-sdk = "0.2.0"
3435
```
3536

cloudevents-sdk-actix-web/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ futures = "^0.3"
2424
[dev-dependencies]
2525
url = { version = "^2.1", features = ["serde"] }
2626
serde_json = "^1.0"
27-
chrono = { version = "^0.4", features = ["serde"] }
27+
chrono = { version = "^0.4", features = ["serde"] }
28+
version-sync = "^0.9"

cloudevents-sdk-actix-web/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
//!
4242
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`]
4343
44+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-actix-web/0.2.0")]
4445
#![deny(broken_intra_doc_links)]
4546

4647
#[macro_use]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#[test]
2+
fn test_readme_deps() {
3+
version_sync::assert_markdown_deps_updated!("README.md");
4+
}
5+
6+
#[test]
7+
fn test_html_root_url() {
8+
version_sync::assert_html_root_url_updated!("src/lib.rs");
9+
}

cloudevents-sdk-rdkafka/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ serde_json = "^1.0"
2424
chrono = { version = "^0.4", features = ["serde"] }
2525
futures = "0.3.5"
2626
rdkafka = { version = "^0.24" }
27+
version-sync = "^0.9"

cloudevents-sdk-rdkafka/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
//! # }
4949
//! ```
5050
51+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-rdkafka/0.2.0")]
5152
#![deny(broken_intra_doc_links)]
5253

5354
#[macro_use]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#[test]
2+
fn test_readme_deps() {
3+
version_sync::assert_markdown_deps_updated!("README.md");
4+
}
5+
6+
#[test]
7+
fn test_html_root_url() {
8+
version_sync::assert_html_root_url_updated!("src/lib.rs");
9+
}

cloudevents-sdk-reqwest/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ mockito = "0.25.1"
2828
tokio = { version = "^0.2", features = ["full"] }
2929
url = { version = "^2.1" }
3030
serde_json = "^1.0"
31-
chrono = { version = "^0.4", features = ["serde"] }
31+
chrono = { version = "^0.4", features = ["serde"] }
32+
version-sync = "^0.9"

cloudevents-sdk-reqwest/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
//!
3030
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`].
3131
32+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-reqwest/0.2.0")]
3233
#![deny(broken_intra_doc_links)]
3334

3435
#[macro_use]

0 commit comments

Comments
 (0)