2021-11-24 17:45:36 +00:00
|
|
|
[package]
|
|
|
|
name = "go_to_line"
|
|
|
|
version = "0.1.0"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/go_to_line.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-11-24 17:45:36 +00:00
|
|
|
[dependencies]
|
2024-04-10 10:08:07 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
editor.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
menu.workspace = true
|
2024-04-10 10:08:07 +00:00
|
|
|
schemars.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
settings.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
text.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2024-03-11 00:17:32 +00:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
indoc.workspace = true
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
|
|
|
menu.workspace = true
|
|
|
|
project = { workspace = true, features = ["test-support"] }
|
2024-03-11 10:07:42 +00:00
|
|
|
rope.workspace = true
|
2024-03-11 00:17:32 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
tree-sitter-rust.workspace = true
|
|
|
|
tree-sitter-typescript.workspace = true
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|