dorak88783

Results 8 comments of dorak88783

Maybe a first step could be to expose the URL (as `String`) of the request? ```rust mock("GET", Matcher::Regex("/hello/.*".to_string())) .with_body_with_url_from_fn(|request_url, write| { let word = some_function_to_process_the_url(request_url); write!(write, "hello {}", word) });...

I made a PR at https://github.com/wisespace-io/binance-rs/pull/124.

I could try to help as well - it'd be a challenge but that would be good for me :) I'm a bit lost though with all the projects -...

I made a repository https://github.com/dorak88783/tdlib-builder which has automatic pre-compiled binaries available. You could use those in the CI flow.

I didn't try yet to build old versions. At least for 1.7 onwards they'll be there, so maybe just add only these tests on the 1.7 and higher versions?

Slightly similar, I have a `dependabot.yml` file with ```yaml schedule: interval: daily time: "06:00" ``` where the quotes around the `time` value are really needed. Yet yamllint suggests that they...

> Are you Sure that Dependabot needs it quoted? Thanks for your quick reply! Well, now I'm not sure if it's YAML in general or Dependabot-specific. Also I'm not familiar...