Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle cache miss #94

Merged
merged 4 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,589 changes: 892 additions & 697 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := bash

VERSION = 0.8.0-rc.1
VERSION = 0.8.0-rc.2

DOCUSIGN_SPEC_DIR = $(CURDIR)/specs/docusign
DOCUSIGN_SPEC = $(DOCUSIGN_SPEC_DIR)/docusign.yaml
Expand Down
12 changes: 6 additions & 6 deletions docusign/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "docusign"
description = "A fully generated & opinionated API client for the DocuSign API."
version = "0.8.0-rc.1"
version = "0.8.0-rc.2"
documentation = "https://docs.rs/docusign/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/docusign"
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
Expand All @@ -28,10 +28,10 @@ parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.3"
reqwest-middleware = { version = "0.3", features = ["multipart"] }
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
reqwest-conditional-middleware = "0.4"
reqwest-middleware = { version = "0.4", features = ["multipart"] }
reqwest-retry = "0.7"
reqwest-tracing = "0.5.4"
ring = { version = "0.16", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion docusign/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
docusign = "0.8.0-rc.1"
docusign = "0.8.0-rc.2"
```

## Basic example
Expand Down
2 changes: 1 addition & 1 deletion docusign/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//!
//! ```toml
//! [dependencies]
//! docusign = "0.8.0-rc.1"
//! docusign = "0.8.0-rc.2"
//! ```
//!
//! ## Basic example
Expand Down Expand Up @@ -4066,8 +4066,8 @@
///To use an anchoring option:
///
///1. Identify the location in the document by text string. You can use a pre-existing text string or add a new one.
///For best performance DocuSign recommends using single word anchor strings when possible, especially when there are a large number of pages in the envelope.

Check warning on line 4069 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:4069:8 | 4069 | ///For best performance DocuSign recommends using single word anchor strings when possible, especially when there are a large number ... | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 4069 | /// For best performance DocuSign recommends using single word anchor strings when possible, especially when there are a large number of pages in the envelope. | +++
///For example, you might want to add a Sign Here tab to the "Borrower's Signature" lines in a document, but that phrase might occur in places in the document where you don't want to tab to appear. In this case, you could add the text "BorrowerSignHere" in white font color (so that isn't visible in the document) to all the places you want Sign Here tabs to appear and use "BorrowerSignHere" as the anchor string.

Check warning on line 4070 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:4070:8 | 4070 | ///For example, you might want to add a Sign Here tab to the "Borrower's Signature" lines in a document, but that phrase might occur ... | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 4070 | /// For example, you might want to add a Sign Here tab to the "Borrower's Signature" lines in a document, but that phrase might occur in places in the document where you don't want to tab to appear. In this case, you could add the text "BorrowerSignHere" in white font color (so that isn't visible in the document) to all the places you want Sign Here tabs to appear and use "BorrowerSignHere" as the anchor string. | +++
///1. Reference the anchor through the `anchorString` property of the tab.
///1. Determine the offset from the anchor string location to where the tab should be placed.
///
Expand Down Expand Up @@ -4142,7 +4142,7 @@
/// In order to automatically populate both occurrences
/// of the `Name` Text tabs,
/// the `bold` property must be set to the same value for both tabs.
///.

Check warning on line 4145 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:4145:8 | 4145 | ///. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 4145 | /// . | ++
pub fn envelope_recipient_tabs(&self) -> envelope_recipient_tabs::EnvelopeRecipientTabs {
envelope_recipient_tabs::EnvelopeRecipientTabs::new(self.clone())
}
Expand Down Expand Up @@ -4982,8 +4982,8 @@
///To use an anchoring option:
///
///1. Identify the location in the document by text string. You can use a pre-existing text string or add a new one.
///For best performance DocuSign recommends using single word anchor strings when possible, especially when there are a large number of pages in the envelope.

Check warning on line 4985 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:4985:8 | 4985 | ///For best performance DocuSign recommends using single word anchor strings when possible, especially when there are a large number ... | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 4985 | /// For best performance DocuSign recommends using single word anchor strings when possible, especially when there are a large number of pages in the envelope. | +++
///For example, you might want to add a Sign Here tab to the "Borrower's Signature" lines in a document, but that phrase might occur in places in the document where you don't want to tab to appear. In this case, you could add the text "BorrowerSignHere" in white font color (so that isn't visible in the document) to all the places you want Sign Here tabs to appear and use "BorrowerSignHere" as the anchor string.

Check warning on line 4986 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:4986:8 | 4986 | ///For example, you might want to add a Sign Here tab to the "Borrower's Signature" lines in a document, but that phrase might occur ... | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 4986 | /// For example, you might want to add a Sign Here tab to the "Borrower's Signature" lines in a document, but that phrase might occur in places in the document where you don't want to tab to appear. In this case, you could add the text "BorrowerSignHere" in white font color (so that isn't visible in the document) to all the places you want Sign Here tabs to appear and use "BorrowerSignHere" as the anchor string. | +++
///1. Reference the anchor through the `anchorString` property of the tab.
///1. Determine the offset from the anchor string location to where the tab should be placed.
///
Expand Down Expand Up @@ -5053,7 +5053,7 @@
/// In order to automatically populate both occurrences
/// of the `Name` Text tabs,
/// the `bold` property must be set to the same value for both tabs.
///.

Check warning on line 5056 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:5056:8 | 5056 | ///. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 5056 | /// . | ++
pub fn template_recipient_tabs(&self) -> template_recipient_tabs::TemplateRecipientTabs {
template_recipient_tabs::TemplateRecipientTabs::new(self.clone())
}
Expand Down Expand Up @@ -5159,17 +5159,17 @@
///
///- `PowerForms_Recipient_Denied_Documents`: The recipient is denied access to the documents.
///- `PowerForms_DigitalCerts_Shared_Tabs_Not_Allowed`: Shared tags are not allowed because a digital certificate is required
///for a signer.

Check warning on line 5162 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:5162:8 | 5162 | ///for a signer. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 5162 | /// for a signer. | ++
///- `PowerForms_DigitalCerts_Free_Form_Tabs_Not_Allowed`: Signers that are required to use a digital certificate must have at
///least one required, non-conditional signature or initials tab.

Check warning on line 5164 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:5164:8 | 5164 | ///least one required, non-conditional signature or initials tab. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 5164 | /// least one required, non-conditional signature or initials tab. | ++
///- `PowerForms_DigitalCerts_Multiple_Recipients_Routing_Order`: Signers that are required to use a digital certificate must be the
///only recipient in a routing order. Edit the routing order or remove the digital certificate requirement.

Check warning on line 5166 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:5166:8 | 5166 | ///only recipient in a routing order. Edit the routing order or remove the digital certificate requirement. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 5166 | /// only recipient in a routing order. Edit the routing order or remove the digital certificate requirement. | ++
///- `PowerForms_DigitalCerts_Markup_Not_Allowed`: Document markup is not allowed because a digital certificate is
///required for a signer.

Check warning on line 5168 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:5168:8 | 5168 | ///required for a signer. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 5168 | /// required for a signer. | ++
///- `PowerForms_Incomplete_Recipient`: The recipient's username, email, or role is not set.
///- `PowerForms_PowerFormId_Required`: A `powerFormId` is required.
///- `PowerForms_PowerFormId_Mismatch`: A `powerFormId` mismatch has occurred.
///.

Check warning on line 5172 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:5172:8 | 5172 | ///. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 5172 | /// . | ++
pub fn power_forms(&self) -> power_forms::PowerForms {
power_forms::PowerForms::new(self.clone())
}
Expand Down Expand Up @@ -5244,7 +5244,7 @@
///- The maximum number of all of a member's unexpired, unconsumed ChunkedUploads. The default value is 10.
///- The maximum total size of all of a member's unexpired, unconsumed ChunkedUploads. The default value is 1 GB.
///- The amount of time that a chunked upload is active after you initialize it. The default value is 20 minutes.
///.

Check warning on line 5247 in docusign/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

doc list item without indentation

warning: doc list item without indentation --> docusign/src/lib.rs:5247:8 | 5247 | ///. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 5247 | /// . | ++
pub fn chunked_uploads(&self) -> chunked_uploads::ChunkedUploads {
chunked_uploads::ChunkedUploads::new(self.clone())
}
Expand Down
10 changes: 5 additions & 5 deletions generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3369,7 +3369,7 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = {{ version = "0.4.38", default-features = false, features = ["serde"] }}
chrono = {{ version = "0.4.38", default-features = false, features = ["alloc", "serde"] }}
dirs = {{ version = "^3.0.2", optional = true }}
http = "1"
jsonwebtoken = "8"
Expand All @@ -3380,10 +3380,10 @@ parse_link_header = "0.3.3"
pem = {{ version = "1.1.0", default-features = false, optional = true }}
percent-encoding = "2.2"
reqwest = {{ version = "0.12", default-features = false, features = ["json", "multipart"] }}
reqwest-conditional-middleware = "0.3"
reqwest-middleware = {{ version = "0.3", features = ["multipart"] }}
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
reqwest-conditional-middleware = "0.4"
reqwest-middleware = {{ version = "0.4", features = ["multipart"] }}
reqwest-retry = "0.7"
reqwest-tracing = "0.5.4"
ring = {{ version = "0.16", default-features = false, optional = true }}
schemars = {{ version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }}
serde = {{ version = "1", features = ["derive"] }}
Expand Down
12 changes: 6 additions & 6 deletions giphy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "giphy-api"
description = "A fully generated & opinionated API client for the Giphy API."
version = "0.8.0-rc.1"
version = "0.8.0-rc.2"
documentation = "https://docs.rs/giphy-api/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/giphy"
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
Expand All @@ -28,10 +28,10 @@ parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.3"
reqwest-middleware = { version = "0.3", features = ["multipart"] }
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
reqwest-conditional-middleware = "0.4"
reqwest-middleware = { version = "0.4", features = ["multipart"] }
reqwest-retry = "0.7"
reqwest-tracing = "0.5.4"
ring = { version = "0.16", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion giphy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
giphy-api = "0.8.0-rc.1"
giphy-api = "0.8.0-rc.2"
```

## Basic example
Expand Down
2 changes: 1 addition & 1 deletion giphy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//!
//! ```toml
//! [dependencies]
//! giphy-api = "0.8.0-rc.1"
//! giphy-api = "0.8.0-rc.2"
//! ```
//!
//! ## Basic example
Expand Down
12 changes: 6 additions & 6 deletions github/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "octorust"
description = "A fully generated & opinionated API client for the GitHub API."
version = "0.8.0-rc.1"
version = "0.8.0-rc.2"
documentation = "https://docs.rs/octorust/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/github"
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
Expand All @@ -28,10 +28,10 @@ parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.3"
reqwest-middleware = { version = "0.3", features = ["multipart"] }
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
reqwest-conditional-middleware = "0.4"
reqwest-middleware = { version = "0.4", features = ["multipart"] }
reqwest-retry = "0.7"
reqwest-tracing = "0.5.4"
ring = { version = "0.16", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
octorust = "0.8.0-rc.1"
octorust = "0.8.0-rc.2"
```

## Basic example
Expand All @@ -58,7 +58,7 @@ let github = Client::new(
```

If you are a GitHub enterprise customer, you will want to create a client with the
[Client#host_override](https://docs.rs/octorust/0.8.0-rc.1/octorust/struct.Client.html#method.host_override) method.
[Client#host_override](https://docs.rs/octorust/0.8.0-rc.2/octorust/struct.Client.html#method.host_override) method.

## Feature flags

Expand All @@ -72,7 +72,7 @@ To enable this, add the following to your `Cargo.toml` file:

```toml
[dependencies]
octorust = { version = "0.8.0-rc.1", features = ["httpcache"] }
octorust = { version = "0.8.0-rc.2", features = ["httpcache"] }
```

Then use the `Client::custom` constructor to provide a cache implementation.
Expand Down
6 changes: 3 additions & 3 deletions github/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//!
//! ```toml
//! [dependencies]
//! octorust = "0.8.0-rc.1"
//! octorust = "0.8.0-rc.2"
//! ```
//!
//! ## Basic example
Expand All @@ -56,7 +56,7 @@
//! ```
//!
//! If you are a GitHub enterprise customer, you will want to create a client with the
//! [Client#host_override](https://docs.rs/octorust/0.8.0-rc.1/octorust/struct.Client.html#method.host_override) method.
//! [Client#host_override](https://docs.rs/octorust/0.8.0-rc.2/octorust/struct.Client.html#method.host_override) method.
//!
//! ## Feature flags
//!
Expand All @@ -70,7 +70,7 @@
//!
//! ```toml
//! [dependencies]
//! octorust = { version = "0.8.0-rc.1", features = ["httpcache"] }
//! octorust = { version = "0.8.0-rc.2", features = ["httpcache"] }
//! ```
//!
//! Then use the `Client::custom` constructor to provide a cache implementation.
Expand Down
12 changes: 6 additions & 6 deletions google/admin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gsuite-api"
description = "A fully generated & opinionated API client for the Google Admin API."
version = "0.8.0-rc.1"
version = "0.8.0-rc.2"
documentation = "https://docs.rs/gsuite-api/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/google/admin"
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
Expand All @@ -28,10 +28,10 @@ parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.3"
reqwest-middleware = { version = "0.3", features = ["multipart"] }
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
reqwest-conditional-middleware = "0.4"
reqwest-middleware = { version = "0.4", features = ["multipart"] }
reqwest-retry = "0.7"
reqwest-tracing = "0.5.4"
ring = { version = "0.16", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion google/admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
gsuite-api = "0.8.0-rc.1"
gsuite-api = "0.8.0-rc.2"
```

## Basic example
Expand Down
2 changes: 1 addition & 1 deletion google/admin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//!
//! ```toml
//! [dependencies]
//! gsuite-api = "0.8.0-rc.1"
//! gsuite-api = "0.8.0-rc.2"
//! ```
//!
//! ## Basic example
Expand Down
12 changes: 6 additions & 6 deletions google/calendar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "google-calendar"
description = "A fully generated & opinionated API client for the Google Calendar API."
version = "0.8.0-rc.1"
version = "0.8.0-rc.2"
documentation = "https://docs.rs/google-calendar/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/google/calendar"
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
Expand All @@ -28,10 +28,10 @@ parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.3"
reqwest-middleware = { version = "0.3", features = ["multipart"] }
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
reqwest-conditional-middleware = "0.4"
reqwest-middleware = { version = "0.4", features = ["multipart"] }
reqwest-retry = "0.7"
reqwest-tracing = "0.5.4"
ring = { version = "0.16", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion google/calendar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
google-calendar = "0.8.0-rc.1"
google-calendar = "0.8.0-rc.2"
```

## Basic example
Expand Down
2 changes: 1 addition & 1 deletion google/calendar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//!
//! ```toml
//! [dependencies]
//! google-calendar = "0.8.0-rc.1"
//! google-calendar = "0.8.0-rc.2"
//! ```
//!
//! ## Basic example
Expand Down
12 changes: 6 additions & 6 deletions google/cloud-resource-manager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "google-cloud-resource-manager"
description = "A fully generated & opinionated API client for the Google Cloud Resource Manager API."
version = "0.8.0-rc.1"
version = "0.8.0-rc.2"
documentation = "https://docs.rs/google-cloud-resource-manager/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/google/cloud-resource-manager"
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
Expand All @@ -28,10 +28,10 @@ parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.3"
reqwest-middleware = { version = "0.3", features = ["multipart"] }
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
reqwest-conditional-middleware = "0.4"
reqwest-middleware = { version = "0.4", features = ["multipart"] }
reqwest-retry = "0.7"
reqwest-tracing = "0.5.4"
ring = { version = "0.16", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion google/cloud-resource-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
google-cloud-resource-manager = "0.8.0-rc.1"
google-cloud-resource-manager = "0.8.0-rc.2"
```

## Basic example
Expand Down
2 changes: 1 addition & 1 deletion google/cloud-resource-manager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//!
//! ```toml
//! [dependencies]
//! google-cloud-resource-manager = "0.8.0-rc.1"
//! google-cloud-resource-manager = "0.8.0-rc.2"
//! ```
//!
//! ## Basic example
Expand Down
Loading
Loading