-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 851 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 851 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
[package]
name = "dd-cloud"
authors = ["Zachary Kornberg <zach@futexlabs.io>"]
version = "0.1.0"
description = "The official CLI tool of Developer DAO Cloud."
repository = "https://github.com/Developer-DAO/cloud-cli"
edition = "2024"
[dependencies]
arboard = "3.6.1"
clap = { version = "4.5.53", features = ["derive"] }
console = "0.15.11"
dialoguer = { version = "0.11.0", features =["fuzzy-select"] }
reqwest = {version = "0.12.15", features = ["json", "rustls-tls", "cookies"]}
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio = {version = "1.48", features = ["rt-multi-thread", "macros"]}
aws-config = { version = "1.1.7", features = ["behavior-version-latest", "credentials-login"] }
aws-sdk-secretsmanager = "1.97.0"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"