Ilya Baryshnikov

Results 30 comments of Ilya Baryshnikov

I think It's pretty hard to determine the maturity of crates per topic by a single person. It looks like a more suitable task for a survey similar to https://blog.rust-lang.org/2020/04/17/Rust-survey-2019.html....

[mtime comparison considered harmful](https://apenwarr.ca/log/20181113) linked above is an excellent blog post! I've ran into one of the problems described there today: > If you accidentally set your system clock ahead...

@gendx I created a reproduction, will it help? ```rust use std::io::BufReader; use lzma_rs::decompress::{Options, UnpackedSize}; const DATA: &[u8] = &[ 93, 0, 0, 1, 0, 0, 0, 111, 253, 255, 255,...

@gendx thanks for checking this example. It's a bit tricky to check when the input is ended. We can have one code, and iterate several times over it using different...

@sunfishcode what is a correct place to add new flags for rights? I'm getting ``` error[E0425]: cannot find value `__WASI_RIGHT_SOCK_CONNECT` in this scope --> crates/wasi-common/src/wasi.rs:42:7 | 42 | | __WASI_RIGHT_SOCK_CONNECT;...

I'm stuck with writing a first test, any advice here? I run tests with ``` cargo test socket --features wasm_tests -- --nocapture ``` The test is in `crates/wasi-common/wasi-misc-tests/src/bin/sock_socket.rs` and the...

@kubkon thank you for help, now tests work!

Is there a good place for a design discussion? For what I found so far, `wasmtime` supports granting access to directories like `--dir some_dir`. Based on this it's possible to...

It actually works when thread pool is not used

Oh, I missed the point that wasm binaries may also receive args ) `--runtime-args` sounds great to me. To continue, is it feasible to support config file at some point?...