forked from yoshidan/google-cloud-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 1.4 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
[package]
name = "google-cloud-pubsub"
version = "0.26.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub"
keywords = ["gcp","pubsub","googleapis","google-cloud-rust"]
license = "MIT"
readme = "README.md"
description = "Google Cloud Platform pubsub client library."
documentation = "https://docs.rs/google-cloud-pubsub/latest/google_cloud_pubsub/"
[dependencies]
tracing = "0.1"
prost-types = "0.12"
tokio = "1.32"
async-channel = "1.9"
async-stream = "0.3"
thiserror = "1.0"
tokio-util = "0.7"
google-cloud-token = { version = "0.1.1", path = "../foundation/token" }
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.13.0", path = "../googleapis", features = ["pubsub"]}
google-cloud-auth = { optional = true, version = "0.15", path="../foundation/auth", default-features=false }
[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
rand = "0.8.5"
tracing-subscriber = "0.3"
serial_test = "3.1"
uuid = { version="1.4", features=["v4"] }
ctor = "0.1.26"
futures-util = "0.3"
[features]
default = ["auth", "default-tls"]
default-tls = ["google-cloud-auth?/default-tls"]
rustls-tls = ["google-cloud-auth?/rustls-tls"]
external-account = ["google-cloud-auth?/external-account"]
trace = []
bytes = ["google-cloud-googleapis/bytes"]
auth = ["google-cloud-auth"]