mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-11-16 19:50:44 +01:00
Ensure that overflow checks are active for the copy
exercise. Closes #64
This commit is contained in:
parent
056505d89f
commit
6029a8fc17
1 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
[workspace]
|
||||
members = ["exercises/*/*", "helpers/common", "helpers/mdbook-exercise-linker", "helpers/ticket_fields"]
|
||||
resolver = "2"
|
||||
|
||||
# This is needed to guarantee the expected behaviour on that specific exercise,
|
||||
# regardless of the "global" setting for `overflow-checks` on the `dev` profile.
|
||||
[profile.dev.package.copy]
|
||||
overflow-checks = true
|
Loading…
Reference in a new issue