Cargo.toml

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