forked from veryl-lang/veryl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVeryl.toml
34 lines (28 loc) · 792 Bytes
/
Veryl.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
[project]
name = "veryl_testcase"
version = "0.1.6"
authors = ["[email protected]"]
description = "Testcases for test"
license = "MIT"
repository = "https://github.com/veryl-lang/veryl"
[build]
clock_type = "posedge"
reset_type = "async_low"
reset_low_suffix = "_n"
filelist_type = "absolute"
target = {type = "directory", path = "testcases/sv"}
sourcemap_target = {type = "directory", path = "testcases/map"}
[format]
indent_width = 4
[doc]
path = "target/veryl_doc"
[test]
simulator = "vcs"
[test.vcs]
compile_args = ["-full64"]
[dependencies]
"https://github.com/veryl-lang/sample" = [
{version = "0.13.0", name = "veryl_sample1"},
{version = "0.14.0", name = "veryl_sample2"},
{version = "0.15.0", name = "veryl_sample3"},
]