-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (28 loc) · 1015 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 = "gcp-vertex-ai-generative-ai"
version = "0.1.0"
description = "An async client library for GCP Vertex AI Generative models - Examples"
repository.workspace = true
license.workspace = true
publish.workspace = true
readme = "./README.md"
keywords.workspace = true
categories.workspace = true
edition.workspace = true
exclude = ["BUILD.sh", ".devcontainer/", ".idea/", ".github/"]
[dev-dependencies]
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
gcp-vertex-ai-generative-language = { path = "./language", version = "^0.1.1" }
[workspace]
members = ["language"]
[workspace.package]
version = "0.1.0"
edition = "2021"
description = "An async client library for GCP Vertex AI Generative models."
authors = ["Sebastien Soudan <[email protected]>"]
repository = "https://github.com/ssoudan/gcp-vertex-ai-generative-ai"
license = "MIT OR Apache-2.0"
readme = "README.md"
publish = true
keywords = ["gcp", "google-cloud", "generative-ai", "vertex-ai"]
categories = []