Skip to content

Commit

Permalink
Downgrade Rust version that bumpalo uses
Browse files Browse the repository at this point in the history
So that the Rust version bumpalo uses matches with the Rust
version this repo uses.
  • Loading branch information
gabrielbosio committed Mar 7, 2024
1 parent 2c31090 commit d5ad48b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 30 deletions.
52 changes: 23 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion kimchi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ mina-poseidon = { path = "../poseidon", version = "0.1.0" }
ocaml = { version = "0.22.2", optional = true }
ocaml-gen = { version = "0.1.5", optional = true }

wasm-bindgen = { version = "0.2.81", optional = true }
wasm-bindgen = { version = "=0.2.87", optional = true }
web-sys = { version = "0.3.36", features = ["Window", "Document", "HtmlElement", "Text", "Node", "Element", "console" ] }

internal-tracing = { path = "../internal-tracing", version = "0.1.0" }

Expand Down Expand Up @@ -87,3 +88,6 @@ bn254 = [ "ark-bn254" ]
keccak-sponges = [ "tiny-keccak" ]
wasm_types = [ "wasm-bindgen" ]
check_feature_flags = []

[patch.crates-io]
bumpalo = { git = 'https://github.com/lambdaclass/bumpalo.git', branch = 'downgrade_rust_version' }

0 comments on commit d5ad48b

Please sign in to comment.