mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 11:29:25 +00:00
0cb8b0e451
This PR cleans up some inconsistencies in the `Cargo.toml` files that were driving me crazy. Release Notes: - N/A
26 lines
577 B
TOML
26 lines
577 B
TOML
[package]
|
|
name = "go_to_line"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/go_to_line.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
menu = { path = "../menu" }
|
|
serde.workspace = true
|
|
settings = { path = "../settings" }
|
|
text = { path = "../text" }
|
|
workspace = { path = "../workspace" }
|
|
postage.workspace = true
|
|
theme = { path = "../theme" }
|
|
ui = { path = "../ui" }
|
|
util = { path = "../util" }
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|