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