-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 754 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 754 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
[package]
name = "onebuttonsite"
version = "0.1.0"
edition = "2021"
description = "Deploy static sites to AWS Amplify with one command"
license = "MIT"
repository = "https://github.com/TheSeanLavery/onebuttonsite-cli"
homepage = "https://github.com/TheSeanLavery/onebuttonsite-cli"
readme = "README.md"
keywords = ["aws", "amplify", "deploy", "cli", "static-site"]
categories = ["command-line-utilities", "web-programming"]
[[bin]]
name = "obs"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
colored = "2"
[dev-dependencies]
serde_json = "1"
[profile.release]
lto = true
strip = true
opt-level = "z"