Cargo.toml

 1[package]
 2name = "go_to_line2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/go_to_line.rs"
 9doctest = false
10
11[dependencies]
12editor = { package = "editor2", path = "../editor2" }
13gpui = { package = "gpui2", path = "../gpui2" }
14menu = { package = "menu2", path = "../menu2" }
15serde.workspace = true
16settings = { package = "settings2", path = "../settings2" }
17text = { package = "text2", path = "../text2" }
18workspace = { package = "workspace2", path = "../workspace2" }
19postage.workspace = true
20theme = { package = "theme2", path = "../theme2" }
21ui = { package = "ui2", path = "../ui2" }
22util = { path = "../util" }
23
24[dev-dependencies]
25editor = { package = "editor2", path = "../editor2", features = ["test-support"] }