-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (84 loc) · 2.32 KB
/
Cargo.toml
File metadata and controls
90 lines (84 loc) · 2.32 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "gcp-bigquery-client"
version = "0.28.0"
authors = ["Laurent Querel <laurent.querel@gmail.com>"]
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"]
build = "build.rs"
[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.1.2"
optional = true
[dependencies]
yup-oauth2 = { version = "12.1.2", default-features = false, features = [
"hyper-rustls", "service-account"
] }
hyper-util = { version = "0.1.16", default-features = false, features = [
"client-legacy",
] }
thiserror = "2.0.16"
tokio = { version = "1.47.1", default-features = false, features = [
"rt-multi-thread",
"net",
"sync",
"macros",
] }
tokio-stream = "0.1.17"
async-stream = "0.3.6"
reqwest = { version = "0.12.23", default-features = false, features = ["json"] }
url = "2.5.7"
serde = "1.0.219"
serde_json = "1.0.143"
log = "0.4.28"
time = { version = "0.3.43", features = [
"local-offset",
"serde",
"serde-well-known",
] }
cloud-storage = { version = "0.11.1", features = [
"global-client",
], optional = true }
async-trait = "0.1.89"
dyn-clone = "1.0.20"
prost = "0.14.1"
prost-types = "0.14.1"
tonic = { version = "0.14.1", default-features = false, features = [
"channel",
"codegen",
"tls-native-roots",
"gzip",
"zstd"
] }
tonic-prost = "0.14.1"
futures = "0.3.31"
pin-project = "1.1.10"
deadpool = "0.12.3"
[dev-dependencies]
tokio-test = "0.4.4"
rand = "0.9.2"
wiremock = "0.6.5"
tempfile = "3.21.0"
fake = "3.1.0"
[build-dependencies]
prost-build = "0.14.1"
tonic-prost-build = { version = "0.14.1", features = ["cleanup-markdown"] }
tonic-build = { version = "0.14.1" }