sunfishcode commented on issue #7029:
Ok, I've now fixed all the
get_mut
/with_mut
issues, with a solution that I think works fairly well, which ends up implementing some amount ofRefCell
becauseRefCell
itself pulls in static initializers.And I've now updated the HTTP code to use handles for polling and streams.
Things that still need to be done:
- Make stdio functions callable multiple times somehow, or add some kind of debug output API.
- Figure out why cargo-vet doesn't like wit-bindgen 0.12
alexcrichton commented on issue #7029:
If you run
cargo vet
locally does it fix the vet issues? (I think I'm listed there as "trust anything published by alex")
sunfishcode commented on issue #7029:
I get the same error locally:
$ cargo vet --locked Vetting Failed! 5 unvetted dependencies: wit-bindgen:0.12.0 missing ["safe-to-deploy"] wit-bindgen-core:0.12.0 missing ["safe-to-deploy"] wit-bindgen-rust:0.12.0 missing ["safe-to-deploy"] wit-bindgen-rust-lib:0.12.0 missing ["safe-to-deploy"] wit-bindgen-rust-macro:0.12.0 missing ["safe-to-deploy"] ```` ~~~
alexcrichton commented on issue #7029:
Ah if you remove
--locked
it should fill in the relevant bits to commit here
sunfishcode commented on issue #7029:
If I remove
--locked
, it fails in a different way.$ cargo vet ERROR × There are some issues with your policy.audit-as-crates-io entries Error: × Some non-crates.io-fetched packages match published crates.io versions │ wasmtime-wmemcheck:14.0.0 help: Add a `policy.*.audit-as-crates-io` entry for them
I get this on the
main
branch too.
alexcrichton commented on issue #7029:
Hm are you using 0.8.0 of
cargo vet
? I updated the wit-bindgen dep to 0.12.0 locally, rancargo vet
, and it succeeded, but I don't know what that specific error is
sunfishcode commented on issue #7029:
Yes, this is cargo-vet 0.8.0. I've now added what appear to be the needed lines for cargo-vet to be happy with wasmtime-wmemcheck, so I've now updated it for wit-bindgen too, and it seems ok now.
Last updated: Nov 22 2024 at 16:03 UTC