bstrie

Results 115 comments of bstrie

Reducing Rust build times would also have an effect here, of which https://github.com/enarx/enarx/issues/1563 is related.

https://github.com/enarx/enarx/pull/1720 has removed the cargo-readme actions without reducing functionality.

Recent article on reducing CI times on a Rust project: https://www.reillywood.com/blog/rust-faster-ci/

Reopening, #2069 fixed one instance of this, and #2067 fixed others, but there's still some tests that fail under Miri and there wasn't time to investigate all of them without...

Steps to reproduce: 1. In the file https://github.com/enarx/enarx/blob/e81f6e6de1c33d84c8d8896542988dda2ac02344/crates/sallyport/tests/integration.rs#L2 , remove `not(miri)` from the `cfg`. 2. From inside the `crates/sallyport` directory, run `MIRIFLAGS=-Zmiri-disable-isolation cargo miri test` See https://github.com/rust-lang/miri/pull/2275 for the miri...

Does this have any advantage over `ssh [email protected] enarx deploy examples/crytple-rust:0.2.0`? I also don't see how we'd support more advanced usage, for example, what if they have SSH running on...

Don't bother updating wasi-crypto, the real solution to this is just to convince rsa to issue a point release which removes the unnecessary upper bound on its zeroize dependency. Tony's...

For a first step we can focus on getting Enarx onto stable, although we'll eventually need to get all of its dependencies onto stable as well (after a cursory examination...

One more thing to note for the future: as soon as https://github.com/rust-lang/cargo/pull/9992 lands we'll begin using a new, unstable `-Z bindeps` Cargo flag, tracked at https://github.com/rust-lang/cargo/issues/9096 . It's too soon...

RUSTC_BOOTSTRAP is a secret implementation detail of the Rust compiler that allows nightly Rust to pretend to be stable Rust, which is used for the purpose of bootstrapping the standard...