-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
53 lines (48 loc) · 934 Bytes
/
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
[package]
name = "dls"
version = "0.9.6"
edition = "2018"
authors = []
description = "Simics DML language server"
license = "Apache-2.0/MIT"
categories = ["development-tools"]
[profile.release]
debug = 1
[lib]
name = "dls"
doctest = false
path = "src/lib.rs"
[[bin]]
name = "dls"
test = false
path = "src/main.rs"
[[bin]]
name = "dfa"
test = false
path = "src/dfa/main.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.2", features = ["cargo", "derive"] }
crossbeam = "0.8"
crossbeam-deque = "0.8.1"
crossbeam-utils = "0.8.7"
env_logger = "0.11"
itertools = "0.14"
jsonrpc = "0.18"
lsp-types = { version = "0.97" }
lazy_static = "1.4"
log = "0.4"
logos = "0.15"
rayon = "1"
regex = "1.5.5"
serde = "1.0"
serde_ignored = "0.1"
serde_json = "1.0"
slotmap = "1.0"
store-interval-tree = "0.4"
strum = { version = "0.26", features = ["derive"] }
subprocess = "0.2"
thiserror = "2.0"
utf8-read = "0.4"
walkdir = "2"
heck = "0.5"