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