-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 1.17 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
45
46
47
48
49
50
[package]
name = "gcp-vertex-ai-vizier"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Sebastien Soudan <[email protected]>"]
exclude = [
"/.github/*",
"/.cargo/*",
"/.gitignore",
]
description = """
An async client library for GCP Vertex AI Vizier.
"""
homepage = "https://github.com/ssoudan/gcp-vertex-ai-vizier"
repository = "https://github.com/ssoudan/gcp-vertex-ai-vizier"
documentation = "https://docs.rs/gcp-vertex-ai-vizier"
readme = "README.md"
keywords = ["gcp", "google-cloud", "vizier", "optimization", "hyperparameter"]
categories = ["algorithms", "science"]
[features]
default = []
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "e2e"
path = "examples/e2e.rs"
[dev-dependencies]
tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread"] }
[lib]
doctest = false
[dependencies]
tonic = { version = "0.9", features = ["tls"] }
prost = "0.11.8"
prost-types = "0.11.8"
tokio = "1.27.0"
thiserror = "1.0.40"
google-authz = {version = "1.0.0-alpha.5", features = ["tonic"]}
regex = "1.7.3"
[build-dependencies]
tonic-build = { version = "0.9", features = ["prost"] }
prost-build = { version = "0.11.8" }