-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (83 loc) · 2.48 KB
/
Cargo.toml
File metadata and controls
92 lines (83 loc) · 2.48 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
members = [
"cli",
"core",
"fmt",
"lsp",
"macros",
"parser",
"playground/worker",
"support/small-str",
"support/teeny-vec",
"support/thin-ref",
"types",
"values",
"zed",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Nilton Volpato <nilton@volpa.to>"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
melbi = { version = "0.1.0" }
melbi-core = { version = "0.1.0" }
melbi-types = { version = "0.1.0" }
melbi-lsp = { version = "0.1.0" }
melbi-cli = { version = "0.1.0" }
melbi-fmt = { version = "0.1.0" }
melbi-macros = { version = "0.1.0" }
melbi-small-str = { version = "0.1.0" }
melbi-teeny-vec = { version = "0.1.0" }
melbi-thin-ref = { version = "0.1.0" }
tree-sitter-melbi = { path = "tree-sitter" }
allocator-api2 = "0.2.21" # Match bumpalo and hashbrown
ariadne = "0.6.0"
bumpalo = { version = "3.19.0", features = ["allocator-api2"] }
hashbrown = { version = "0.16", default-features = false, features = ["default-hasher", "inline-more", "allocator-api2", "equivalent"] }
lazy_static = "1.4"
miette = { version = "7.6.0", features = ["derive", "fancy"] }
once_cell = { version = "1.21.3" }
pest = { version = "^2.8.0", default-features = false }
pest_derive = { version = "^2.8.0", default-features = false }
pest_generator = { version = "^2.7", default-features = false}
pretty_assertions = "1.4"
smallvec = { version = "1.15.1", features = ["const_new", "union"] }
static_assertions = { version = "1.1.0" }
thiserror = { version = "2.0.17", default-features = false }
tokio = { version = "1.47.1", features = ["full"] }
[package]
name = "melbi"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
[dependencies]
ariadne.workspace = true
bumpalo.workspace = true
melbi-core.workspace = true
melbi-fmt = { workspace = true, optional = true }
miette.workspace = true
thiserror.workspace = true
[dev-dependencies]
expect-test = "1.5"
pretty_assertions.workspace = true
once_cell.workspace = true
indoc = "2"
pest.workspace = true
[lib]
proc-macro = false
[features]
default = ["fmt"]
fmt = ["dep:melbi-fmt"]
[patch.crates-io]
melbi = { path = "." }
melbi-core = { path = "core" }
melbi-types = { path = "types" }
melbi-lsp = { path = "lsp" }
melbi-cli = { path = "cli" }
melbi-fmt = { path = "fmt" }
melbi-macros = { path = "macros" }
melbi-small-str = { path = "support/small-str" }
melbi-teeny-vec = { path = "support/teeny-vec" }
melbi-thin-ref = { path = "support/thin-ref" }