-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (49 loc) · 1.83 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
[workspace]
resolver = "2"
members = ["xtask/", "lsp-server/*", "compiler/*", "fuzzers/*"]
default-members = ["xtask/", "compiler/*", "lsp-server/*"]
[workspace.package]
authors = ["DropDemBits"]
license = "MIT"
edition = "2021"
[workspace.dependencies]
camino = "1.1.1"
if_chain = "1.0"
itertools = "0.10.3"
indexmap = "1.7.0"
insta = "1.28"
# FIXME: tied to tower-lsp version, use separate structs so that changes are confined to lsp-server
lsp-types = "0.93.2"
paste = "1.0.5"
salsa = { git = "https://github.com/salsa-rs/salsa/", branch = "master", package = "salsa-2022" }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
unindent = "0.2"
upcast = "0.1.0"
# Compiler crates
toc-analysis = { path = "compiler/toc-analysis" }
toc-ast-db = { path = "compiler/toc-ast-db" }
toc-hir-expand = { path = "compiler/toc-hir-expand" }
toc-hir-def = { path = "compiler/toc-hir-def" }
toc-hir = { path = "compiler/toc-hir" }
toc-hir-codegen = { path = "compiler/toc-hir-codegen" }
toc-hir-db = { path = "compiler/toc-hir-db" }
toc-hir-lowering = { path = "compiler/toc-hir-lowering" }
toc-hir-pretty = { path = "compiler/toc-hir-pretty" }
toc-parser = { path = "compiler/toc-parser" }
toc-paths = { path = "compiler/toc-paths" }
toc-reporting = { path = "compiler/toc-reporting" }
toc-salsa-collections = { path = "compiler/toc-salsa-collections" }
toc-scanner = { path = "compiler/toc-scanner" }
toc-source-graph = { path = "compiler/toc-source-graph" }
toc-span = { path = "compiler/toc-span" }
toc-syntax = { path = "compiler/toc-syntax" }
toc-validate = { path = "compiler/toc-validate" }
toc-vfs = { path = "compiler/toc-vfs" }
toc-vfs-db = { path = "compiler/toc-vfs-db" }
# IDE crates
toc-ide-db = { path = "lsp-server/toc-ide-db" }
[profile.release]
debug = true
[patch.crates-io]
lazy_static = { git = "https://github.com/rust-fuzz/resettable-lazy-static.rs" }