-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
58 lines (50 loc) · 1.28 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "ad-editor"
version = "0.2.0"
edition = "2021"
authors = ["sminez <[email protected]>"]
license = "MIT"
repository = "https://github.com/sminez/ad"
documentation = "https://docs.rs/ad-editor"
readme = "README.md"
description = "An adaptable text editor"
include = [
"src/**/*",
"data/**/*",
"Cargo.toml",
"README.md"
]
keywords = [ "terminal", "editor", "text-editor" ]
categories = [ "development-tools", "text-editors", "command-line-utilities" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [ "crates/*" , "xtask" ]
[[bin]]
doc = false
name = "ad"
path = "src/main.rs"
[profile.release]
strip = true
lto = true
[[bench]]
name = "bench_main"
harness = false
[dependencies]
ad_event = { version = "0.2", path = "crates/ad_event" }
ninep = { version = "0.2", path = "crates/ninep" }
libc = "0.2.159"
lsp-types = "0.97.0"
serde = "1.0.215"
serde_json = "1.0.133"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [ "fmt" ] }
unicode-width = "0.2.0"
tree-sitter = "0.24.4"
libloading = "0.8.6"
streaming-iterator = "0.1.9"
toml = "0.8.19"
[dev-dependencies]
simple_test_case = "1.2.0"
criterion = "0.5"
tree-sitter-python = "0.23.6"
tree-sitter-rust = "0.23.2"