-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (89 loc) · 2.38 KB
/
Cargo.toml
File metadata and controls
99 lines (89 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[workspace]
members = [
"crates/aligner",
"crates/analyzer",
"crates/emitter",
"crates/formatter",
"crates/languageserver",
"crates/mdbook",
"crates/metadata",
"crates/migrator",
"crates/parser",
"crates/path",
"crates/simulator",
"crates/sourcemap",
"crates/std",
"crates/tests",
"crates/veryl",
"support/highlightgen",
]
exclude = [
"support/sourcemap-resolver",
"support/zed",
]
resolver = "2"
[workspace.package]
authors = ["dalance@gmail.com"]
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"
edition = "2024"
[workspace.dependencies]
anyhow = "1.0"
clap = {version = "4.6.0", features = ["derive"]}
console = "0.16.3"
criterion = {package = "codspeed-criterion-compat", version = "4.0"}
daggy = "0.9.0"
futures = "0.3.32"
fxhash = "0.2.1"
handlebars = "6.4"
indent = "0.1.1"
log = "0.4.29"
mdbook = "0.4.51"
miette = {version = "7.6"}
num-traits = "0.2.19"
once_cell = "1.21"
parol = "4.3"
parol_runtime = "4.3"
paste = "1.0"
pprof = {version = "0.15.0", features = ["flamegraph"]}
pulldown-cmark = "0.13.1"
regex = "1.12.3"
scnr2 = "0.5.0"
semver = {version = "1.0", features = ["serde"]}
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
similar = {version = "2.7.0", features = ["text", "inline"]}
smallvec = "1.15"
strnum_bitwidth = "0.1.2"
tempfile = "3.26"
thiserror = "2.0"
tokio = {version = "1.50.0", features = ["full"]}
toml = "1.0.6"
url = {version = "2.5", features = ["serde"]}
vcd = "0.7.0"
walkdir = "2.5.0"
[workspace.metadata.release]
tag = false
[profile.dev.build-override]
opt-level = 3
[profile.dev]
debug = false
[profile.release.build-override]
opt-level = 3
[profile.release]
strip = "debuginfo"
lto = true
codegen-units = 1
[profile.bench]
debug = true
[profile.release-verylup]
inherits = "release"
lto = false
codegen-units = 256
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3