-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 894 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 894 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
[package]
name = "dd-cloud"
authors = ["Zachary Kornberg <zach@futexlabs.io>"]
version = "0.1.1"
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.16.3"
dialoguer = { version = "0.12.0", features =["fuzzy-select"] }
reqwest = { version = "0.13.3", features = ["json", "cookies"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio = {version = "1.52", features = ["rt-multi-thread", "macros"] }
aws-config = { version = "1.8.16", features = ["behavior-version-latest", "credentials-login"] }
aws-sdk-secretsmanager = "1.104.0"
url = "2.5.8"
cookie_store = { version = "0.22.1", features = ["serde_json"] }
bytes = "1.11.1"
[profile.dist]
inherits = "release"
lto = "thin"