-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 819 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
[package]
name = "zygen"
description = "Zeroth Genotype CLI for Google Cloud APIs"
version = "0.8.0"
edition = "2021"
rust-version = "1.80.1" # The minimal supported Rust version
authors = ["Takuya Hashimoto <[email protected]>"]
[[bin]]
name = "zg"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.17", features = ["derive"] }
dirs = "5.0"
env_logger = "0.11"
glob = "0.3"
log = "0.4"
prettytable-rs = "^0.10"
rand = "0.8.5"
regex = "1.0.0"
reqwest = "0.12.7"
rmp = "0.8"
rmp-serde = "1.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.33"
tokio = { version = "1.40.0", features = ["full"]}
url = "2.5.2"
urlencoding = "2.1.3"
[target.'cfg(target_os="linux")'.dependencies]
openssl = { version = "0.10.66", features = ["vendored"] }
[profile.release]
strip = true