Cargo.toml

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