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