Cargo.toml
1[package]
2name = "install_cli"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/install_cli.rs"
10
11[features]
12test-support = []
13
14[dependencies]
15smol.workspace = true
16anyhow.workspace = true
17log.workspace = true
18gpui = { path = "../gpui" }
19util = { path = "../util" }