forked from lquerel/gcp-bigquery-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.56 KB
/
Cargo.toml
File metadata and controls
49 lines (46 loc) · 1.56 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
[package]
name = "gcp-bigquery-client"
version = "0.18.0"
authors = ["Laurent Querel <laurent.querel@gmail.com>"]
edition = "2018"
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"]
native-tls = ["reqwest/native-tls"]
rust-tls = ["reqwest/rustls-tls"]
# 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"]
[dependencies]
yup-oauth2 = "8.3"
hyper = {version="0.14", features = ["http1"]}
hyper-rustls = {version="0.24", features = ["native-tokio"]}
thiserror = "1"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "net", "sync", "macros"] }
tokio-stream = "0.1"
async-stream = "0.3"
reqwest = { version = "0.11", default-features = false, features = ["json"] }
url = "2"
serde = "1"
serde_json = "1"
log = "0.4"
time = { version = "0.3.22", features = ["local-offset", "serde", "serde-well-known"] }
cloud-storage = {version="0.11.1", features = ["global-client"], optional = true}
async-trait = "0.1.68"
dyn-clone = "1.0.11"
[dev-dependencies]
tokio-test = "0.4"
rand = "0.8"
wiremock = "0.5.19"
tempfile = "3.6.0"
fake = "2.6.1"