Skip to content

Commit ff5ea85

Browse files
committed
Regenerate
1 parent 60ff290 commit ff5ea85

64 files changed

Lines changed: 1066 additions & 461 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 852 additions & 247 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docusign/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "docusign"
33
description = "A fully generated & opinionated API client for the DocuSign API."
4-
version = "0.10.0"
4+
version = "0.11.0-rc.0"
55
documentation = "https://docs.rs/docusign/"
66
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/docusign"
77
readme = "README.md"
@@ -12,8 +12,8 @@ license = "MIT"
1212
default = ["middleware", "rustls-tls"]
1313
# enable etag-based http_cache functionality
1414
httpcache = ["dirs"]
15-
native-tls = ["reqwest/default-tls", "openssl"]
16-
rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]
15+
native-tls = ["reqwest/native-tls", "openssl"]
16+
rustls-tls = ["reqwest/default-tls", "ring", "pem"]
1717
middleware = [
1818
"reqwest-conditional-middleware",
1919
"reqwest-middleware",
@@ -33,11 +33,11 @@ openssl = { version = "0.10", default-features = false, optional = true }
3333
parse_link_header = "0.3.3"
3434
pem = { version = "3.0.5", default-features = false, optional = true }
3535
percent-encoding = "2.2"
36-
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
37-
reqwest-conditional-middleware = { version = "0.4", optional = true }
38-
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
39-
reqwest-retry = { version = "0.7", optional = true }
40-
reqwest-tracing = { version = "0.5.4", optional = true }
36+
reqwest = { version = "0.13", default-features = false, features = ["json", "form"] }
37+
reqwest-conditional-middleware = { version = "0.5", optional = true }
38+
reqwest-middleware = { version = "0.5", features = ["multipart"], optional = true }
39+
reqwest-retry = { version = "0.9", optional = true }
40+
reqwest-tracing = { version = "0.7", optional = true }
4141
ring = { version = "0.17", default-features = false, optional = true }
4242
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
4343
serde = { version = "1", features = ["derive"] }

docusign/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To install the library, add the following to your `Cargo.toml` file.
3232

3333
```toml
3434
[dependencies]
35-
docusign = "0.10.0"
35+
docusign = "0.11.0-rc.0"
3636
```
3737

3838
## Basic example

docusign/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//!
3131
//! ```toml
3232
//! [dependencies]
33-
//! docusign = "0.10.0"
33+
//! docusign = "0.11.0-rc.0"
3434
//! ```
3535
//!
3636
//! ## Basic example

giphy/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "giphy-api"
33
description = "A fully generated & opinionated API client for the Giphy API."
4-
version = "0.10.0"
4+
version = "0.11.0-rc.0"
55
documentation = "https://docs.rs/giphy-api/"
66
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/giphy"
77
readme = "README.md"
@@ -12,8 +12,8 @@ license = "MIT"
1212
default = ["middleware", "rustls-tls"]
1313
# enable etag-based http_cache functionality
1414
httpcache = ["dirs"]
15-
native-tls = ["reqwest/default-tls", "openssl"]
16-
rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]
15+
native-tls = ["reqwest/native-tls", "openssl"]
16+
rustls-tls = ["reqwest/default-tls", "ring", "pem"]
1717
middleware = [
1818
"reqwest-conditional-middleware",
1919
"reqwest-middleware",
@@ -33,11 +33,11 @@ openssl = { version = "0.10", default-features = false, optional = true }
3333
parse_link_header = "0.3.3"
3434
pem = { version = "3.0.5", default-features = false, optional = true }
3535
percent-encoding = "2.2"
36-
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
37-
reqwest-conditional-middleware = { version = "0.4", optional = true }
38-
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
39-
reqwest-retry = { version = "0.7", optional = true }
40-
reqwest-tracing = { version = "0.5.4", optional = true }
36+
reqwest = { version = "0.13", default-features = false, features = ["json", "form"] }
37+
reqwest-conditional-middleware = { version = "0.5", optional = true }
38+
reqwest-middleware = { version = "0.5", features = ["multipart"], optional = true }
39+
reqwest-retry = { version = "0.9", optional = true }
40+
reqwest-tracing = { version = "0.7", optional = true }
4141
ring = { version = "0.17", default-features = false, optional = true }
4242
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
4343
serde = { version = "1", features = ["derive"] }

giphy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To install the library, add the following to your `Cargo.toml` file.
3232

3333
```toml
3434
[dependencies]
35-
giphy-api = "0.10.0"
35+
giphy-api = "0.11.0-rc.0"
3636
```
3737

3838
## Basic example

giphy/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//!
3131
//! ```toml
3232
//! [dependencies]
33-
//! giphy-api = "0.10.0"
33+
//! giphy-api = "0.11.0-rc.0"
3434
//! ```
3535
//!
3636
//! ## Basic example

github/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "octorust"
33
description = "A fully generated & opinionated API client for the GitHub API."
4-
version = "0.10.0"
4+
version = "0.11.0-rc.0"
55
documentation = "https://docs.rs/octorust/"
66
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/github"
77
readme = "README.md"
@@ -12,8 +12,8 @@ license = "MIT"
1212
default = ["middleware", "rustls-tls"]
1313
# enable etag-based http_cache functionality
1414
httpcache = ["dirs"]
15-
native-tls = ["reqwest/default-tls", "openssl"]
16-
rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]
15+
native-tls = ["reqwest/native-tls", "openssl"]
16+
rustls-tls = ["reqwest/default-tls", "ring", "pem"]
1717
middleware = [
1818
"reqwest-conditional-middleware",
1919
"reqwest-middleware",
@@ -33,11 +33,11 @@ openssl = { version = "0.10", default-features = false, optional = true }
3333
parse_link_header = "0.3.3"
3434
pem = { version = "3.0.5", default-features = false, optional = true }
3535
percent-encoding = "2.2"
36-
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
37-
reqwest-conditional-middleware = { version = "0.4", optional = true }
38-
reqwest-middleware = { version = "0.4", features = ["multipart"], optional = true }
39-
reqwest-retry = { version = "0.7", optional = true }
40-
reqwest-tracing = { version = "0.5.4", optional = true }
36+
reqwest = { version = "0.13", default-features = false, features = ["json", "form"] }
37+
reqwest-conditional-middleware = { version = "0.5", optional = true }
38+
reqwest-middleware = { version = "0.5", features = ["multipart"], optional = true }
39+
reqwest-retry = { version = "0.9", optional = true }
40+
reqwest-tracing = { version = "0.7", optional = true }
4141
ring = { version = "0.17", default-features = false, optional = true }
4242
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
4343
serde = { version = "1", features = ["derive"] }

github/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To install the library, add the following to your `Cargo.toml` file.
3838

3939
```toml
4040
[dependencies]
41-
octorust = "0.10.0"
41+
octorust = "0.11.0-rc.0"
4242
```
4343

4444
## Basic example
@@ -58,7 +58,7 @@ let github = Client::new(
5858
```
5959

6060
If you are a GitHub enterprise customer, you will want to create a client with the
61-
[Client#host_override](https://docs.rs/octorust/0.10.0/octorust/struct.Client.html#method.host_override) method.
61+
[Client#host_override](https://docs.rs/octorust/0.11.0-rc.0/octorust/struct.Client.html#method.host_override) method.
6262

6363
## Feature flags
6464

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

7373
```toml
7474
[dependencies]
75-
octorust = { version = "0.10.0", features = ["httpcache"] }
75+
octorust = { version = "0.11.0-rc.0", features = ["httpcache"] }
7676
```
7777

7878
Then use the `Client::custom` constructor to provide a cache implementation.

github/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
//!
3737
//! ```toml
3838
//! [dependencies]
39-
//! octorust = "0.10.0"
39+
//! octorust = "0.11.0-rc.0"
4040
//! ```
4141
//!
4242
//! ## Basic example
@@ -56,7 +56,7 @@
5656
//! ```
5757
//!
5858
//! If you are a GitHub enterprise customer, you will want to create a client with the
59-
//! [Client#host_override](https://docs.rs/octorust/0.10.0/octorust/struct.Client.html#method.host_override) method.
59+
//! [Client#host_override](https://docs.rs/octorust/0.11.0-rc.0/octorust/struct.Client.html#method.host_override) method.
6060
//!
6161
//! ## Feature flags
6262
//!
@@ -70,7 +70,7 @@
7070
//!
7171
//! ```toml
7272
//! [dependencies]
73-
//! octorust = { version = "0.10.0", features = ["httpcache"] }
73+
//! octorust = { version = "0.11.0-rc.0", features = ["httpcache"] }
7474
//! ```
7575
//!
7676
//! Then use the `Client::custom` constructor to provide a cache implementation.

0 commit comments

Comments
 (0)