-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 2.38 KB
/
Cargo.toml
File metadata and controls
60 lines (55 loc) · 2.38 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
[package]
name = "gcloud-bigquery"
version = "1.6.0"
edition = "2021"
authors = ["yoshidan <naohiro.y@gmail.com>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery"
keywords = ["gcp","bigquery","googleapis","google-cloud-rust"]
license = "MIT"
readme = "README.md"
description = "Google Cloud Platform bigquery client library."
documentation = "https://docs.rs/gcloud-bigquery/latest/gcloud_bigquery/"
[lib]
doctest = false
[dependencies]
async-trait = "0.1"
token-source = "1.0"
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.3.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { package = "gcloud-gax", version = "1.4.0", path = "../foundation/gax"}
thiserror = "2.0"
tracing = "0.1"
reqwest = { version = "0.13", features = ["json", "stream", "multipart", "charset"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version="1.32", features=["macros"] }
time = { version = "0.3", features = ["std", "macros", "formatting", "parsing", "serde"] }
arrow = { version = "56.1.0", default-features = false, features = ["ipc"] }
base64 = "0.22"
bigdecimal = { version="0.4", features=["serde"] }
num-bigint = "0.4"
backon = { version = "1.2", default-features = false, features = ["tokio-sleep"] }
reqwest-middleware = { version = "0.5", features = ["json", "multipart", "query"] }
anyhow = "1.0"
async-stream = "0.3"
prost-types = "0.14"
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.3.0", path="../foundation/auth", default-features=false }
[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
serial_test = "3.1"
tracing-subscriber = { version="0.3.17", features=["env-filter"] }
ctor = "0.5"
google-cloud-auth = { package = "gcloud-auth", path = "../foundation/auth", default-features=false }
base64-serde = "0.8"
prost = "0.14"
futures-util = "0.3"
[features]
default = ["rustls-tls", "auth", "jwt-aws-lc-rs"]
rustls-tls = ["google-cloud-auth?/rustls-tls"]
native-tls = ["google-cloud-auth?/native-tls"]
rustls-no-provider = ["google-cloud-auth?/rustls-no-provider"]
hickory-dns = ["reqwest/hickory-dns", "google-cloud-auth?/hickory-dns"]
trace = []
auth = ["google-cloud-auth"]
external-account = ["google-cloud-auth?/external-account"]
jwt-aws-lc-rs = ["google-cloud-auth?/jwt-aws-lc-rs"]
jwt-rust-crypto = ["google-cloud-auth?/jwt-rust-crypto"]