-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 718 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
[package]
name = "android-cli"
version = "0.2.0"
edition = "2021"
description = "Create, build, and release Android apps faster without Android Studio."
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "android"
path = "src/main.rs"
[dependencies]
# holding on clap 4.x until they figure out colors: https://epage.github.io/blog/2022/09/clap4/#polishing-help-output
clap = { version = "3.2.23", features = ["default", "derive"] }
guidon = "0.4.1"
env_logger = "0.10.0"
dialoguer = "0.10.4"
which = "4.4.0"
itertools = "0.11.0"
ron = "0.8.0"
serde = { version = "1.0.183", features = ["derive"] }
anyhow = "1.0.72"