Sebastian Dröge

Results 678 comments of Sebastian Dröge

Yeah it should be possible to move `src/scc_parser.rs` and `src/mcc_parser.rs` into a crate by themselves without any GStreamer dependencies and no other dependencies. I'll take a look later, just wanted...

Minimalized testcase: ```rust use either::Either; use combine; use combine::parser::byte::hex_digit; use combine::{choice, token}; use combine::{ParseError, Parser, RangeStream}; fn mcc_payload_item() -> impl Parser, I::Error: ParseError, { choice!( token(b'G').map(|_| Either::Right([0xfau8, 0x00, 0x00].as_ref())), token(b'H').map(|_|...

This is btw the same function as in https://github.com/rust-lang/rust/issues/67454

@Marwes Was this fixed in the meantime, and if so do you know which change(s) fixed it?

Nice, I'll confirm with the next nightly that has this included. Thanks for the fast response!

No, that still takes a long long time with 1.45.2. That commit is supposed to be in 1.42.0 and above.

> Once we have all the packages `cargo-c` has no way to know if those should be listed as `Requires` or `Requires.private`. So we'd still need some manual configuration from...

> @sdroege probably we should add a test for it. Indeed. I don't use the library renaming feature myself, only the versioning overriding of the library so I didn't notice...