Skip to content

Commit 2dffe0d

Browse files
authored
Merge pull request #295 from posborne/html-report-command
Add `report` subcommand to generate html report
2 parents 372c47a + 50f6653 commit 2dffe0d

File tree

20 files changed

+3574
-550
lines changed

20 files changed

+3574
-550
lines changed

.cargo/config.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Configuration for increased stack size to handle vega_lite_4 stack requirements
2+
# See: https://github.com/procyon-rs/vega_lite_4.rs#stack-size
3+
4+
[target.x86_64-pc-windows-msvc]
5+
rustflags = [
6+
"-C", "link-args=/STACK:32000000",
7+
]
8+
9+
[target.i686-pc-windows-msvc]
10+
rustflags = [
11+
"-C", "link-args=/STACK:32000000",
12+
]

0 commit comments

Comments
 (0)