Mikhail Katychev

Results 79 comments of Mikhail Katychev

Heads up this is still an issue with musl: ``` = note: /usr/bin/ld: /volume/target/x86_64-unknown-linux-musl/release/deps/libgrpcio_sys-86f4b4534cfc1876.rlib(re2.cc.o): undefined reference to symbol '__memmove_chk@@GLIBC_2.3.4' /usr/bin/ld: /lib/x86_64-linux-gnu/libc.so.6: error adding symbols: DSO missing from command line collect2:...

@kevinoid no worries, I'll try a crack at it when I have time! Early bird gets the bugfix I guess 🤷‍♂.

I have 4 failing test cases: ``` failures: ---- autocomplete::test::test_autocomplete_file stdout ---- thread 'autocomplete::test::test_autocomplete_file' panicked at 'assertion failed: `(left == right)` left: `Some(("five.png", 7..14))`, right: `Some(("four.png", 7..14))`', src/autocomplete.rs:242:9 note: run...

Would using braces/parentheses as string delimiters work? ```md [StackOverflow]( http://stackoverflow.com) ``` Or triple quotes `"""`like in toml: ```toml # str1 becomes "Roses are red\nVioles are blue" str1 = """ Roses...

@ten3roberts you could pass the macro token token fragments that you'd normally pass into event macros through a match arm along with a `Level`: ```rust #[macro_export] macro_rules! dyn_event { ($lvl:ident,...

This is a pretty big issue for my org as the we currently cannot use the latest `flatc` since the codegen is a breaking change

This is still an issue esp while matching on a stream disconnect in tonic: https://github.com/hyperium/tonic/issues/1579 @seanmonstar what is needed to move this PR forward, happy to start a separate feature...

Rust Version: 1.74.1 Clap Version: 4.4.11 @epage @lukesneeringer I did a bit of diving into the the problem since I ran into something similar on latest clap & latest rust....

You can use a nightly rustfmt config values in a rust-stable codebase by sticking `rustfmt.toml` in a non-root dir: ``` rustup run nightly cargo fmt -- --config-path fmt/rustfmt.toml ```

> Because rkyv does two-phase serialization Are you referring to `rkyv::Serialize` and `rkyv::Archive` here? > However, there's not a good way to persist a converted value. How long would a...