-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
76 lines (71 loc) · 2.32 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
[workspace]
members = ["crates/*", "xtask"]
resolver = "2"
[workspace.package]
version = "0.14.7"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[workspace.dependencies]
# third-party
anyhow = "1.0.75"
better-panic = "0.3.0"
codespan-reporting = "0.11.1"
crossbeam-channel = "0.5.9"
drop_bomb = "0.1.5"
env_logger = "0.10.1"
flate2 = "1.0.28"
la-arena = "0.3.1"
log = "0.4.20"
lsp-server = "0.7.5"
lsp-types = { version = "0.95.0", features = ["proposed"] }
num-bigint = "0.4.4"
num-traits = "0.2.17"
pico-args = "0.5.0"
pretty_assertions = "1.4.0"
proc-macro2 = "1.0.70"
pulldown-cmark = "0.9.3"
quote = "1.0.33"
rowan = "0.15.15"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
toml = "0.8.8"
# TODO decide between wax/glob
wax = "0.6.0"
glob = "0.3.1"
# language-util
chain-map.git = "https://github.com/azdavis/language-util.git"
code-h2-md-map.git = "https://github.com/azdavis/language-util.git"
diagnostic.git = "https://github.com/azdavis/language-util.git"
elapsed.git = "https://github.com/azdavis/language-util.git"
event-parse.git = "https://github.com/azdavis/language-util.git"
fast-hash.git = "https://github.com/azdavis/language-util.git"
fmt-util.git = "https://github.com/azdavis/language-util.git"
idx.git = "https://github.com/azdavis/language-util.git"
paths.git = "https://github.com/azdavis/language-util.git"
pattern-match.git = "https://github.com/azdavis/language-util.git"
str-util.features = ["serde"]
str-util.git = "https://github.com/azdavis/language-util.git"
syntax-gen.git = "https://github.com/azdavis/language-util.git"
text-pos.git = "https://github.com/azdavis/language-util.git"
text-size-util.git = "https://github.com/azdavis/language-util.git"
token.git = "https://github.com/azdavis/language-util.git"
topo-sort.git = "https://github.com/azdavis/language-util.git"
uniq.git = "https://github.com/azdavis/language-util.git"
write-rs-tokens.git = "https://github.com/azdavis/language-util.git"
# sml-libs
sml-libs.git = "https://github.com/azdavis/sml-libs.git"
[workspace.lints.rust]
elided-lifetimes-in-paths = "deny"
explicit-outlives-requirements = "deny"
missing-debug-implementations = "deny"
missing-docs = "deny"
unused-extern-crates = "deny"
[workspace.lints.clippy]
pedantic = "deny"
[profile.release]
codegen-units = 1
lto = "fat"
# for backtraces
debug = 1
strip = "none"