-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 982 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 = "gsqueal"
version = "0.1.0"
description = "Minimal command line interface for Google Cloud SQL"
license = "MIT"
authors = ["Mayank Verma <[email protected]>"]
repository = "https://github.com/errmayank/gsqueal"
homepage = "https://github.com/errmayank/gsqueal#readme"
categories = ["command-line-interface", "command-line-utilities"]
keywords = ["cli", "google-cloud", "gcp", "sql", "database"]
edition = "2021"
[[bin]]
name = "gsqueal"
path = "src/bin/main.rs"
[dependencies]
clap = { version = "4.5.27", features = ["derive"] }
console = { version = "0.15.10" }
dialoguer = { version = "0.11.0" }
dirs = { version = "6.0.0" }
indicatif = { version = "0.17.11" }
reqwest = { version = "0.12.12", features = ["json"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.137" }
thiserror = { version = "2.0.11" }
tokio = { version = "1.43.0", features = ["full"] }
[profile.release]
opt-level = 3
codegen-units = 1
lto = "fat"