-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
61 lines (54 loc) · 1.43 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
[workspace]
members = [
"crates/analyzer",
"crates/emitter",
"crates/formatter",
"crates/languageserver",
"crates/mdbook",
"crates/metadata",
"crates/parser",
"crates/tests",
"crates/veryl",
"crates/wasm",
]
exclude = [
# "crates/wasm",
]
resolver = "2"
[workspace.package]
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/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.4.2", features = ["derive"]}
log = "0.4.20"
mdbook = "0.4.34"
miette = {version = "5.10", features = ["fancy"]}
regex = "1.9.5"
semver = {version = "1.0", features = ["serde"]}
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
strnum_bitwidth = "0.1.2"
tempfile = "3.8"
thiserror = "1.0"
toml = "0.7.6"
url = {version = "2.4", features = ["serde"]}
[workspace.metadata.release]
tag = false
[profile.dev.build-override]
opt-level = 3
[profile.release.build-override]
opt-level = 3
[profile.release]
# Workaround for long time compilation
# https://github.com/rust-lang/rust/issues/106211
codegen-units = 1
# for wasm-pack
opt-level = "z"
[profile.bench]
debug = true