This PR removes the `name` field from under `lib` in the `Cargo.toml` file for the `panel` crate, as it isn't necessary. Also removed it from `script/new-crate`. Release Notes: - N/A
18 lines
262 B
TOML
18 lines
262 B
TOML
[package]
|
|
name = "panel"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/panel.rs"
|
|
|
|
[dependencies]
|
|
gpui.workspace = true
|
|
ui.workspace = true
|
|
workspace.workspace = true
|