-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 882 Bytes
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
[package]
name = "dbtp"
version = "0.2.1"
edition = "2021"
description = "A CLI for the dbt Cloud Platform API"
license = "Apache-2.0"
repository = "https://github.com/trouze/dbtp"
readme = "README.md"
[[bin]]
name = "dbtp"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
tabled = { version = "0.17", features = ["std"] }
thiserror = "2"
directories = "6"
indicatif = "0.17"
chrono = { version = "0.4", features = ["serde"] }
base64 = "0.22"
arrow = { version = "53", default-features = false, features = ["ipc"] }
clap_complete = "4.6.0"
[profile.release]
strip = true
lto = true
codegen-units = 1