forked from lquerel/gcp-bigquery-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (70 loc) · 2.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "gcp-bigquery-client"
version = "0.23.0"
authors = ["Laurent Querel <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = """
An ergonomic async client library for GCP BigQuery.
"""
homepage = "https://github.com/lquerel/gcp-bigquery-client"
repository = "https://github.com/lquerel/gcp-bigquery-client"
documentation = "https://docs.rs/gcp-bigquery-client"
readme = "README.md"
exclude = ["/.github/*"]
keywords = ["gcp", "bigquery", "google-cloud"]
categories = ["database"]
[features]
default = ["rust-tls", "ring", "gzip"]
native-tls = ["reqwest/native-tls"]
rust-tls = ["reqwest/rustls-tls"]
ring = ["yup-oauth2/ring"]
aws-lc-rs = ["yup-oauth2/aws-lc-rs"]
# Feature used to remove cloud-storage from the standard build.
# cloud-storage has a dependency on chrono, so the feature is there to remove this dependency by default.
bq_load_job = ["cloud-storage"]
gzip = ["flate2"]
[dependencies.flate2]
version = "1.0"
optional = true
[dependencies]
yup-oauth2 = { version = "11", default-features = false, features = ["hyper-rustls", "service-account"] }
hyper = { version = "1.4.1", features = ["http1"] }
hyper-util = { version = "0.1.7", default-features = false, features = [
"client-legacy",
] }
thiserror = "1.0.63"
tokio = { version = "1.39.2", default-features = false, features = [
"rt-multi-thread",
"net",
"sync",
"macros",
] }
tokio-stream = "0.1.15"
async-stream = "0.3.5"
reqwest = { version = "0.12.5", default-features = false, features = ["json"] }
url = "2.5.2"
serde = "1.0.205"
serde_json = "1.0.122"
log = "0.4.22"
time = { version = "0.3.36", features = [
"local-offset",
"serde",
"serde-well-known",
] }
cloud-storage = { version = "0.11.1", features = [
"global-client",
], optional = true }
async-trait = "0.1.81"
dyn-clone = "1.0.17"
prost = "0.13.1"
prost-types = "0.13.1"
tonic = { version = "0.12.1", features = ["transport", "tls", "tls-roots"] }
[dev-dependencies]
tokio-test = "0.4.4"
rand = "0.8.5"
wiremock = "0.6.1"
tempfile = "3.12.0"
fake = "2.9.2"
[build-dependencies]
tonic-build = { version = "0.12.1", features = ["cleanup-markdown"] }