forked from shuttle-hq/bigquery-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (25 loc) · 848 Bytes
/
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
[package]
name = "bigquery-storage"
version = "0.1.2"
authors = ["damien <[email protected]>"]
description = "A small wrapper around the Google BigQuery Storage API"
keywords = [ "google", "bigquery", "storage" ]
edition = "2018"
license = "Apache-2.0"
homepage = "https://github.com/openquery-io/bigquery-storage"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [ "arrow" ]
[build-dependencies]
tonic-build = "0.4.0"
[dev-dependencies]
tokio = { version = "1.0", features = [ "rt", "macros" ] }
[dependencies]
futures = "0.3"
tonic = { version = "0.4.0", features = ["transport", "tls", "tls-roots"] }
prost = "0.7.0"
prost-types = "0.7.0"
yup-oauth2 = { version = "5.0" }
hyper = { version = "0.14" }
arrow = { version = "3.0", optional = true }