-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (57 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
63 lines (57 loc) · 1.44 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2018, Olof Kraigher olof.kraigher@gmail.com
[workspace]
resolver = "2"
members = [
"vhdl_lang_macros",
"vhdl_lang",
"vhdl_ls",
"vhdl_syntax",
"xtask",
"vhdl-dump-ast",
]
# By default, do not include members that are only needed at build-time
# e.g., (vhdl_lang_macros, xtask)
default-members = ["vhdl_lang", "vhdl_ls", "vhdl_syntax", "vhdl-dump-ast"]
[workspace.package]
version = "0.86.0"
authors = ["Olof Kraigher <olof.kraigher@gmail.com>"]
license = "MPL-2.0"
edition = "2021"
rust-version = "1.87"
repository = "https://github.com/VHDL-LS/rust_hdl"
readme = "README.md"
[workspace.dependencies]
clap = { version = "4", features = ["derive"] }
dirs = "6.0.0"
dunce = "1"
enum-map = "2.7.3"
env_logger = "0.11.8"
fnv = "1"
fuzzy-matcher = "0.3.7"
glob = "0.3.2"
itertools = "0.14.0"
log = "0.4.27"
lsp-types = "^0.95.1"
lsp-server = "0.7.8"
parking_lot = "0.12.3"
pinned_vec = "0.1.1"
quote = "1"
rayon = "1"
serde = "1"
serde_json = "1"
strum = { version = "0.27.1", features = ["derive"] }
subst = "0.3.8"
syn = { version = "2", features = ["full"] }
toml = "0.8.23"
# Dev dependencies
assert_cmd = "2.0.14"
assert_matches = "1"
brunch = "0.11"
predicates = "3.1.0"
pretty_assertions = "1"
regex = "1.10.5"
tempfile = "3"