Oleksii Lozovskyi
Oleksii Lozovskyi
I've quite enjoyed `json_in_type` being faster at JSON serialization than `serde`. Thanks a lot for creating this crate! Though, there were some itches that required scratching. One of them is...
Currently, in order to use `json_object!` macro you also have to import `inlined_json_object!` macro. This is codified as the recommended way to just `use json_in_type::*;` and import *everything* exported by...
Use [@actions/tool-cache](https://github.com/actions/toolkit/tree/master/packages/tool-cache) which provides neat utilities for downloading stuff from the Internet and is expected to be integrated with GitHub’s caches. This possible means that we could drop dependency on...
This is a preview version of OpenAPI (aka Swagger) specification of node API extracted from current documentation and source code. This machine-readable format is going to replace the current informal...
How to reuse `AbortRegistration` for multiple futures? I have a future that I want to make `Abortable`. When that future completes, I need to make a new one and have...
This is a demonstration of issue #62. I'm not really sure what do you want to do with these tests. Right now they are broken and it's not trivial to...
Right now GitHub Actions do not do what they should do. Instead of testing for specified targets, they build tests for the host OS and run them there. When proper...
This allows users of newer versions of crossbeam to avoid duplicate versions of dependencies, not much else. This update bumps minimum required Rust version to 1.36. There are some API...
When unstable `--format=junit` is used, crates with doctests panic. ### Code ```rust /// ``` /// assert_eq!(2 + 2, 4); /// ``` pub fn foo() {} ``` ``` cargo test --doc...