-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (31 loc) · 869 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
33
34
35
36
37
[package]
name = "gcp-vertex-ai-generative-language"
version = "0.1.2"
description = "An async client library for GCP Vertex AI Generative models - Language"
repository.workspace = true
license.workspace = true
publish.workspace = true
readme = "../README.md"
keywords.workspace = true
categories.workspace = true
edition.workspace = true
[features]
default = []
# unstable API - may change in future versions
unstable = []
[lib]
doctest = false
[dependencies]
tonic = { version = "0.11", features = ["tls"] }
prost = "0.12.1"
prost-types = "0.12.1"
tokio = "1.32.0"
thiserror = "1.0.48"
[build-dependencies]
tonic-build = { version = "0.11", features = ["prost"] }
prost-build = { version = "0.12.1" }
[dev-dependencies]
insta = { version = "1.31.0", features = ["json"] }
tokio-test = "0.4.3"
[package.metadata.cargo-machete]
ignored = ["prost", "prost-types"]