-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
101 lines (84 loc) · 2.51 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
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
93
94
95
96
97
98
99
100
101
[workspace]
resolver = "2"
members = [
"sol-syntax",
"sol-hir",
"sol-hir-lowering",
"sol-driver",
"sol-diagnostic",
"sol-vfs",
"sol-ide",
"sol-thir",
"sol-thir-lowering",
"sol-eyre",
"sol-cli",
"sol-typer",
"sol-docs-backend",
"tree-sitter-sol",
]
[workspace.dependencies]
dashmap = "5.1.0"
fxhash = "0.2.1"
if_chain = "1.0.2"
im = "15.1.0"
im-rc = "15.0.0"
itertools = "0.11.0"
log = "0.4.14"
thiserror = "1.0.40"
salsa-2022 = { git = "https://github.com/aripiprazole/salsa.git" }
eyre = "0.6.8"
miette = "5.10.0"
bupropion = "0.0.18"
paste = "1.0.14"
tree-sitter = "~0.20.10"
type-sitter-lib = { git = "https://github.com/Jakobeha/type-sitter.git" }
type-sitter-gen = { git = "https://github.com/Jakobeha/type-sitter.git" }
tree-sitter-highlight = "0.20.1"
axum = "0.6.20"
ariadne = { version = "0.3.0", features = ["auto-color"] }
similar = "2.2.1"
strip-ansi-escapes = "0.2.0"
env_logger = "0.10.0"
petgraph = "0.6.3"
once_cell = "1.18.0"
crossbeam-channel = "0.5.8"
notify-debouncer-mini = "0.3.0"
colored = "2"
ropey = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.78"
tokio = { version = "1.17.0", features = [
"macros",
"fs",
"rt-multi-thread",
"io-std",
] }
tower-lsp = { version = "0.19.0" }
async-trait = "0.1.72"
deno_core = "0.229.0"
resast = "0.4.1"
resw = "0.5.0"
rust-format = "0.3.4"
toml = "0.7.6"
clap = { version = "4.3.19", features = ["derive"] }
sol-cli = { version = "0.0.1", path = "./sol-cli" }
sol-diagnostic = { version = "0.0.1", path = "./sol-diagnostic" }
sol-docs-backend = { version = "0.0.1", path = "./sol-docs-backend" }
sol-driver = { version = "0.0.1", path = "./sol-driver" }
sol-eyre = { version = "0.0.1", path = "./sol-eyre" }
sol-hir = { version = "0.0.1", path = "./sol-hir" }
sol-hir-lowering = { version = "0.0.1", path = "./sol-hir-lowering" }
sol-ide = { version = "0.0.1", path = "./sol-ide" }
sol-syntax = { version = "0.0.1", path = "./sol-syntax" }
sol-thir = { version = "0.0.1", path = "./sol-thir" }
sol-thir-lowering = { version = "0.0.1", path = "./sol-thir-lowering" }
sol-typer = { version = "0.0.1", path = "./sol-typer" }
sol-vfs = { version = "0.0.1", path = "./sol-vfs" }
owo-colors = "4.0.0"
tree-sitter-sol = { version = "0.1.20", path = "./tree-sitter-sol" }
[workspace.package]
edition = "2021"
authors = ["Gabrielle Guimarães de Oliveira"]
description = "Resilient compiler for the Sol programming language"
documentation = "https://github.com/aripiprazole/sol"
version = "0.0.1"