dot-http icon indicating copy to clipboard operation
dot-http copied to clipboard

Publish new release?

Open 5225225 opened this issue 1 year ago • 1 comments

Hello!

I'm coming to this project from https://github.com/rust-lang/rust/pull/99389 , where some stricter checks of creation of uninitialized data is being tested out, and the crates.io version of this crate ran into the checks. It looks like 0.2.0 on crates.io has out of date dependencies, eventually leading to an out of date smallvec.

I tested the proposed change on master, and it ran fine, so the only thing that's needed is a new release to be made.

5225225 avatar Jul 31 '22 16:07 5225225

Compiling the published crate using rust stable results in

...
   Compiling Boa v0.5.1
error[E0282]: type annotations needed
  --> /home/jayvdb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/Boa-0.5.1/src/lib/builtins/array.rs:23:11
   |
23 |     array.borrow().set_internal_slot(
   |           ^^^^^^   ----------------- type must be known at this point
   |
help: try using a fully qualified path to specify the expected types
   |
23 |     <Gc<ValueData> as Borrow<Borrowed>>::borrow(&array).set_internal_slot(
   |     +++++++++++++++++++++++++++++++++++++++++++++     ~

Doesnt occur when installing from the repo.

jayvdb avatar Aug 27 '23 02:08 jayvdb