Cargo.toml
1[package]
2name = "go_to_line"
3version = "0.1.0"
4edition = "2018"
5
6[lib]
7path = "src/go_to_line.rs"
8
9[dependencies]
10text = { path = "../text" }
11editor = { path = "../editor" }
12gpui = { path = "../gpui" }
13workspace = { path = "../workspace" }
14postage = { version = "0.4", features = ["futures-traits"] }