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" }
15settings = { path = "../settings" }
16text = { path = "../text" }
17workspace = { path = "../workspace" }
18postage.workspace = true
19theme = { path = "../theme" }
20util = { path = "../util" }
21
22[dev-dependencies]
23editor = { path = "../editor", features = ["test-support"] }