Skip to content
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
153 changes: 64 additions & 89 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.9.0
VERSION = 0.10.0

DOCUSIGN_SPEC_DIR = $(CURDIR)/specs/docusign
DOCUSIGN_SPEC = $(DOCUSIGN_SPEC_DIR)/docusign.yaml
Expand Down
8 changes: 4 additions & 4 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.9.0"
version = "0.10.0"
documentation = "https://docs.rs/docusign/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/docusign"
readme = "README.md"
Expand All @@ -26,19 +26,19 @@ async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
pem = { version = "3.0.5", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = { version = "0.4", optional = true }
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
reqwest-retry = { version = "0.7", optional = true }
reqwest-tracing = { version = "0.5.4", optional = true }
ring = { version = "0.16", default-features = false, optional = true }
ring = { version = "0.17", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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.9.0"
docusign = "0.10.0"
```

## 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.9.0"
//! docusign = "0.10.0"
//! ```
//!
//! ## Basic example
Expand Down Expand Up @@ -4075,8 +4075,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 4078 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:4078:8 | 4078 | ///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 | 4078 | /// 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 4079 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:4079:8 | 4079 | ///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 | 4079 | /// 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 @@ -4151,7 +4151,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 4154 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:4154:8 | 4154 | ///. | ^ | = 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 | 4154 | /// . | ++
pub fn envelope_recipient_tabs(&self) -> envelope_recipient_tabs::EnvelopeRecipientTabs {
envelope_recipient_tabs::EnvelopeRecipientTabs::new(self.clone())
}
Expand Down Expand Up @@ -4991,8 +4991,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 4994 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:4994:8 | 4994 | ///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 | 4994 | /// 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 4995 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:4995:8 | 4995 | ///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 | 4995 | /// 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 @@ -5062,7 +5062,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 5065 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:5065:8 | 5065 | ///. | ^ | = 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 | 5065 | /// . | ++
pub fn template_recipient_tabs(&self) -> template_recipient_tabs::TemplateRecipientTabs {
template_recipient_tabs::TemplateRecipientTabs::new(self.clone())
}
Expand Down Expand Up @@ -5170,15 +5170,15 @@
///- `PowerForms_DigitalCerts_Shared_Tabs_Not_Allowed`: Shared tags are not allowed because a digital certificate is required
///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 5173 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:5173:8 | 5173 | ///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 | 5173 | /// 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 5175 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:5175:8 | 5175 | ///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 | 5175 | /// 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 5177 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:5177:8 | 5177 | ///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 | 5177 | /// 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 5181 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:5181:8 | 5181 | ///. | ^ | = 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 | 5181 | /// . | ++
pub fn power_forms(&self) -> power_forms::PowerForms {
power_forms::PowerForms::new(self.clone())
}
Expand Down Expand Up @@ -5253,7 +5253,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 5256 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:5256:8 | 5256 | ///. | ^ | = 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 | 5256 | /// . | ++
pub fn chunked_uploads(&self) -> chunked_uploads::ChunkedUploads {
chunked_uploads::ChunkedUploads::new(self.clone())
}
Expand Down
6 changes: 3 additions & 3 deletions generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3379,19 +3379,19 @@ async-recursion = "^1.0"
chrono = {{ version = "0.4.38", default-features = false, features = ["alloc", "serde"] }}
dirs = {{ version = "^3.0.2", optional = true }}
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = {{ version = "^0.4", features = ["serde"] }}
mime = "0.3"
openssl = {{ version = "0.10", default-features = false, optional = true }}
parse_link_header = "0.3.3"
pem = {{ version = "1.1.0", default-features = false, optional = true }}
pem = {{ version = "3.0.5", default-features = false, optional = true }}
percent-encoding = "2.2"
reqwest = {{ version = "0.12", default-features = false, features = ["json", "multipart"] }}
reqwest-conditional-middleware = {{ version = "0.4", optional = true }}
reqwest-middleware = {{ version = "0.4", features = ["multipart"], optional = true }}
reqwest-retry = {{ version = "0.7", optional = true }}
reqwest-tracing = {{ version = "0.5.4", optional = true }}
ring = {{ version = "0.16", default-features = false, optional = true }}
ring = {{ version = "0.17", default-features = false, optional = true }}
schemars = {{ version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }}
serde = {{ version = "1", features = ["derive"] }}
serde_json = "1"
Expand Down
8 changes: 4 additions & 4 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.9.0"
version = "0.10.0"
documentation = "https://docs.rs/giphy-api/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/giphy"
readme = "README.md"
Expand All @@ -26,19 +26,19 @@ async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
pem = { version = "3.0.5", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = { version = "0.4", optional = true }
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
reqwest-retry = { version = "0.7", optional = true }
reqwest-tracing = { version = "0.5.4", optional = true }
ring = { version = "0.16", default-features = false, optional = true }
ring = { version = "0.17", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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.9.0"
giphy-api = "0.10.0"
```

## 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.9.0"
//! giphy-api = "0.10.0"
//! ```
//!
//! ## Basic example
Expand Down
8 changes: 4 additions & 4 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.9.0"
version = "0.10.0"
documentation = "https://docs.rs/octorust/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/github"
readme = "README.md"
Expand All @@ -26,19 +26,19 @@ async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
pem = { version = "3.0.5", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = { version = "0.4", optional = true }
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
reqwest-retry = { version = "0.7", optional = true }
reqwest-tracing = { version = "0.5.4", optional = true }
ring = { version = "0.16", default-features = false, optional = true }
ring = { version = "0.17", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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.9.0"
octorust = "0.10.0"
```

## 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.9.0/octorust/struct.Client.html#method.host_override) method.
[Client#host_override](https://docs.rs/octorust/0.10.0/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.9.0", features = ["httpcache"] }
octorust = { version = "0.10.0", 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.9.0"
//! octorust = "0.10.0"
//! ```
//!
//! ## 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.9.0/octorust/struct.Client.html#method.host_override) method.
//! [Client#host_override](https://docs.rs/octorust/0.10.0/octorust/struct.Client.html#method.host_override) method.
//!
//! ## Feature flags
//!
Expand All @@ -70,7 +70,7 @@
//!
//! ```toml
//! [dependencies]
//! octorust = { version = "0.9.0", features = ["httpcache"] }
//! octorust = { version = "0.10.0", features = ["httpcache"] }
//! ```
//!
//! Then use the `Client::custom` constructor to provide a cache implementation.
Expand Down
8 changes: 4 additions & 4 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.9.0"
version = "0.10.0"
documentation = "https://docs.rs/gsuite-api/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/google/admin"
readme = "README.md"
Expand All @@ -26,19 +26,19 @@ async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
pem = { version = "3.0.5", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = { version = "0.4", optional = true }
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
reqwest-retry = { version = "0.7", optional = true }
reqwest-tracing = { version = "0.5.4", optional = true }
ring = { version = "0.16", default-features = false, optional = true }
ring = { version = "0.17", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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.9.0"
gsuite-api = "0.10.0"
```

## 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.9.0"
//! gsuite-api = "0.10.0"
//! ```
//!
//! ## Basic example
Expand Down
8 changes: 4 additions & 4 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.9.0"
version = "0.10.0"
documentation = "https://docs.rs/google-calendar/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/google/calendar"
readme = "README.md"
Expand All @@ -26,19 +26,19 @@ async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
pem = { version = "3.0.5", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = { version = "0.4", optional = true }
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
reqwest-retry = { version = "0.7", optional = true }
reqwest-tracing = { version = "0.5.4", optional = true }
ring = { version = "0.16", default-features = false, optional = true }
ring = { version = "0.17", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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.9.0"
google-calendar = "0.10.0"
```

## 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.9.0"
//! google-calendar = "0.10.0"
//! ```
//!
//! ## Basic example
Expand Down
8 changes: 4 additions & 4 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.9.0"
version = "0.10.0"
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 @@ -26,19 +26,19 @@ async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
pem = { version = "3.0.5", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = { version = "0.4", optional = true }
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
reqwest-retry = { version = "0.7", optional = true }
reqwest-tracing = { version = "0.5.4", optional = true }
ring = { version = "0.16", default-features = false, optional = true }
ring = { version = "0.17", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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.9.0"
google-cloud-resource-manager = "0.10.0"
```

## 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.9.0"
//! google-cloud-resource-manager = "0.10.0"
//! ```
//!
//! ## Basic example
Expand Down
8 changes: 4 additions & 4 deletions google/drive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "google-drive"
description = "A fully generated & opinionated API client for the Google Drive API."
version = "0.9.0"
version = "0.10.0"
documentation = "https://docs.rs/google-drive/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/google/drive"
readme = "README.md"
Expand All @@ -26,19 +26,19 @@ async-recursion = "^1.0"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "1"
jsonwebtoken = "8"
jsonwebtoken = "9"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
pem = { version = "3.0.5", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = { version = "0.4", optional = true }
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
reqwest-retry = { version = "0.7", optional = true }
reqwest-tracing = { version = "0.5.4", optional = true }
ring = { version = "0.16", default-features = false, optional = true }
ring = { version = "0.17", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
Loading
Loading