-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
63 lines (57 loc) · 1.57 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
[workspace]
members = [
"crates/aligner",
"crates/analyzer",
"crates/emitter",
"crates/formatter",
"crates/languageserver",
"crates/mdbook",
"crates/metadata",
"crates/parser",
"crates/path",
"crates/sourcemap",
"crates/std",
"crates/tests",
"crates/veryl",
]
exclude = [
"support/sourcemap-resolver",
]
resolver = "2"
[workspace.package]
authors = ["[email protected]"]
repository = "https://github.com/veryl-lang/veryl"
keywords = ["parser", "verilog", "systemverilog"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A modern hardware description language"
[workspace.dependencies]
anyhow = "1.0"
clap = {version = "4.5.21", features = ["derive"]}
futures = "0.3.31"
log = "0.4.22"
mdbook = "0.4.42"
miette = {version = "7.2"}
once_cell = "1.20"
pulldown-cmark = "0.12.2"
regex = "1.11.1"
semver = {version = "1.0", features = ["serde"]}
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
similar = {version = "2.6.0", features = ["text", "inline"]}
strnum_bitwidth = "0.1.2"
tempfile = "3.14"
thiserror = "1.0"
tokio = {version = "1.41.1", features = ["full"]}
toml = "0.8.19"
url = {version = "2.5", features = ["serde"]}
walkdir = "2.5.0"
[workspace.metadata.release]
tag = false
[profile.dev.build-override]
opt-level = 3
[profile.release.build-override]
opt-level = 3
[profile.bench]
debug = true