Austin Tasato

Results 22 comments of Austin Tasato

This is actually a great feature that I too would like to have...

My discussion for #13113 was redirected here. I just read https://github.com/rust-lang/compiler-team/issues/475. It sounds like the WASI team is going for a file/directory-based directories interface... > 2. Extend the system with...

> My personal suggestion for @CinchBlue is this: configure a cargo +nightly fmt check in your CI (it's recommended to have cargo fmt checks in any non-trivial Rust repo anyway),...

> However, I think we still need some more thinking in terms of feature design. It certainly cannot be shipped to end users in its current state. What is needed...

Also, you can reproduce inconsistencies with this setup: ```bash $ rustup show -v Default host: aarch64-unknown-linux-gnu rustup home: /home/ubuntu/.rustup installed toolchains -------------------- nightly-2023-11-24-aarch64-unknown-linux-gnu rustc 1.76.0-nightly (a1a37735c 2023-11-23) nightly-2023-11-26-aarch64-unknown-linux-gnu rustc 1.76.0-nightly...

I managed to get this working with static linking, at least on `aarch64-apple-darwin` with Rust 1.70. Here is what my structure looks like: ```bazel # //external/bazel/openssl/BUILD.build.bazel """An openssl build file...

it also does not work if you use `Option` instead: ```rs // lib.rs mod java_glue; pub enum RecursiveEnum { Null, S } #[derive(Debug, Clone, Default)] pub struct Lol { pub...

I see that there is some sort of generic type map within the library -- but I don't have insight into what is happening. How are these type conversions being...

This isn't theoretically impossible right? Is there some way I can help implement this? What is needed?