|
4 | 4 | [package]
|
5 | 5 |
|
6 | 6 | name = "google-bigquery2"
|
7 |
| -version = "5.0.3+20240214" |
| 7 | +version = "6.0.0+20240616" |
8 | 8 | authors = [ "Sebastian Thiel <[email protected]>"]
|
9 | 9 | description = "A complete library to interact with Bigquery (protocol v2)"
|
10 | 10 | repository = "https://github.com/Byron/google-apis-rs/tree/main/gen/bigquery2"
|
11 | 11 | homepage = "https://cloud.google.com/bigquery/"
|
12 |
| -documentation = "https://docs.rs/google-bigquery2/5.0.3+20240214" |
| 12 | +documentation = "https://docs.rs/google-bigquery2/6.0.0+20240616" |
13 | 13 | license = "MIT"
|
14 | 14 | keywords = ["bigquery", "google", "protocol", "web", "api"]
|
15 | 15 | autobins = false
|
16 |
| -edition = "2018" |
| 16 | +edition = "2021" |
17 | 17 |
|
18 | 18 |
|
19 | 19 | [dependencies]
|
20 |
| -anyhow = "^ 1.0" |
21 |
| -hyper-rustls = "0.24.0" |
22 |
| -mime = "^ 0.3.0" |
23 |
| -serde = { version = "^ 1.0", features = ["derive"] } |
24 |
| -serde_json = "^ 1.0" |
25 |
| -itertools = "^ 0.10" |
26 |
| -google-apis-common = { path = "../../google-apis-common", version = "6.0" } |
27 |
| -hyper = "^ 0.14" |
28 |
| -http = "^0.2" |
29 |
| -tokio = "^1.0" |
30 |
| -tower-service = "^0.3.1" |
31 |
| -url = "= 1.7" |
| 20 | +chrono = { version = "0.4", default-features = false, features = ["clock"] } |
| 21 | +hyper = "1" |
| 22 | +hyper-rustls = { version = "0.27", default-features = false } |
| 23 | +hyper-util = "0.1" |
| 24 | +mime = "0.3" |
| 25 | +serde = { version = "1", features = ["derive"] } |
| 26 | +serde_json = "1" |
| 27 | +serde_with = "3" |
| 28 | +tokio = "1" |
| 29 | +url = "2" |
| 30 | +utoipa = { version = "4", optional = true } |
| 31 | +yup-oauth2 = { version = "12", optional = true } |
| 32 | + |
| 33 | +google-apis-common = { path = "../../google-apis-common", version = "7" } |
32 | 34 |
|
33 | 35 |
|
34 | 36 |
|
35 | 37 | [features]
|
36 |
| -yup-oauth2 = ["google-apis-common/yup-oauth2"] |
37 | 38 | default = ["yup-oauth2"]
|
| 39 | +utoipa = ["dep:utoipa"] |
| 40 | +yup-oauth2 = ["dep:yup-oauth2", "google-apis-common/yup-oauth2"] |
0 commit comments