Skip to content

Commit

Permalink
fix(cargo): update bumpalo 3.8.0 -> 3.11.1 (#333)
Browse files Browse the repository at this point in the history
Summary:
Fixes an inconsistency between the version used for allocative, Cargo.toml, and the shim Cargo.toml.

I found this while doing some experiments with #308, and figured it might be nice to have.

There is also an inconsistency in the `starlark-rust` crate (which uses 3.8), but I'm not fixing that here unless asked because I believe those fixes need to go to the starlark repository.

Pull Request resolved: #333

Reviewed By: scottcao

Differential Revision: D47337433

Pulled By: themarwhal

fbshipit-source-id: 61d9d3f891d959bcd4aa44b67435ac71a528ad17
  • Loading branch information
thoughtpolice authored and facebook-github-bot committed Jul 10, 2023
1 parent 31f077a commit 0cf24e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ backtrace = "0.3.51"
base64 = "0.13.0"
bincode = "1.3.3"
blake3 = { version = "1.3.1", features = [ "default", "digest", "rayon", "std", "traits-preview" ] }
bumpalo = "3.8"
bumpalo = "3.11.1"
byteorder = "1.4.3"
bytes = "1.0"
bytesize = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion shim/third-party/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ backtrace = "0.3.51"
base64 = "0.13.0"
bincode = "1.3.3"
blake3 = { version = "1.3.1", features = [ "default", "digest", "rayon", "std", "traits-preview" ] }
bumpalo = "=3.8.0"
bumpalo = "=3.11.1"
byteorder = "1.4.3"
bytes = "1.0"
bytesize = "1.1.0"
Expand Down

0 comments on commit 0cf24e9

Please sign in to comment.