exclude roc_std to fix windows link error

This commit is contained in:
Anton-4 2022-03-02 07:56:56 +01:00
parent 89fbe28715
commit 0fee3c7b23
2 changed files with 2 additions and 8 deletions

7
Cargo.lock generated
View File

@ -3823,13 +3823,6 @@ dependencies = [
[[package]]
name = "roc_std"
version = "0.1.0"
dependencies = [
"indoc",
"libc",
"pretty_assertions",
"quickcheck",
"quickcheck_macros",
]
[[package]]
name = "roc_target"

View File

@ -38,7 +38,6 @@ members = [
"repl_eval",
"repl_test",
"repl_wasm",
"roc_std",
"test_utils",
"utils",
"docs",
@ -50,6 +49,8 @@ exclude = [
# The tests will still correctly build them.
"cli_utils",
"compiler/test_mono_macros",
# `cargo build` would cause roc_std to be built with default features which errors on windows
"roc_std",
]
# Needed to be able to run `cargo run -p roc_cli --no-default-features` -
# see www/build.sh for more.