Skip to content

Commit

Permalink
increase stack size for async_std
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-maron committed Oct 9, 2023
1 parent e1a8547 commit 6abf91e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ run_ci: lint build test

@async_std target *ARGS:
echo setting executor to async-std
export RUSTDOCFLAGS='--cfg async_executor_impl="async-std" --cfg async_channel_impl="async-std" {{original_rustdocflags}}' RUSTFLAGS='--cfg async_executor_impl="async-std" --cfg async_channel_impl="async-std" {{original_rustflags}}' && just {{target}} {{ARGS}}
export RUST_MIN_STACK=4194304 RUSTDOCFLAGS='--cfg async_executor_impl="async-std" --cfg async_channel_impl="async-std" {{original_rustdocflags}}' RUSTFLAGS='--cfg async_executor_impl="async-std" --cfg async_channel_impl="async-std" {{original_rustflags}}' && just {{target}} {{ARGS}}

build:
cargo build --verbose --workspace --examples --bins --tests --lib --benches
Expand Down

0 comments on commit 6abf91e

Please sign in to comment.