Skip to content

Commit

Permalink
test: test
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagolobocastro committed Jul 17, 2024
1 parent 60ae380 commit 0354479
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ tracing = "0.1.37"

[dependencies.serde]
features = ["derive"]
version = "1.0.188"
# v1.0.198 introduces a breaking change by making use of unstable feature saturating_int_impl!
# Let's ensure we don't use v.1.0.198 or newer until we upgrade the compiler!
# https://github.com/serde-rs/serde/issues/2734
version = "<1.0.198"

[dependencies.uuid]
features = ["v4"]
Expand Down
2 changes: 1 addition & 1 deletion scripts/rust-linter-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [ -n "$RUST_NIGHTLY_PATH" ]; then
info "RUST_NIGHTLY_PATH is set: $RUST_NIGHTLY_PATH"
ls $RUST_NIGHTLY_PATH/bin
ls $RUST_NIGHTLY_PATH/bin/rustfmt
ls ~/.carbo/bin || true
ls ~/.cargo/bin || true
whereis rustfmt
whereis cargo
rustfmt -V
Expand Down

0 comments on commit 0354479

Please sign in to comment.