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