Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,12 @@ Some dependencies do not play nicely with our MSRV, if you are running the tests
you may need to pin as follows:

```
cargo update -p serde --precise 1.0.156
cargo update -p byteorder --precise 1.4.3
```

Note this list could sometimes be not exhaustive because not enforced by CI.
If you have any issues check the script executed in CI: `contrib/test.sh`

## Contributing
Contributions are generally welcome. If you intend to make larger changes please
discuss them in an issue before PRing them to avoid duplicate work and
Expand Down
6 changes: 1 addition & 5 deletions contrib/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ rustc --version

# Pin dependencies required to build with Rust 1.58
if cargo --version | grep "1\.58"; then
cargo update -p serde_json --precise 1.0.99
cargo update -p serde --precise 1.0.156
cargo update -p quote --precise 1.0.30
cargo update -p proc-macro2 --precise 1.0.63
cargo update -p serde_test --precise 1.0.152
cargo update -p byteorder --precise 1.4.3
fi

# Format if told to
Expand Down
2 changes: 2 additions & 0 deletions fuzz/fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ fi
cargo --version
rustc --version

cargo update -p byteorder --precise 1.4.3

# Testing
cargo install --force honggfuzz --no-default-features
for targetFile in $targetFiles; do
Expand Down