nickelc
nickelc
Steam version doesn't like fragmented files compressed with lz4 block format but has no problems with zlib.
i stumbled across this [line](https://github.com/ms705/nom-sql/blob/master/src/condition.rs#L178). > would consumers ever need to know about "IS NULL" vs. "= NULL"? ```sql select 1 from t where id is null select 1 from...
The `Interaction` enum is changed to a struct and a `InteractionData` enum for the different data. This brings the model closer to Discord's model, direct access to the common fields...
The internal structs can be moved into their respective modules because `pub(super)` is now supported by the MSRV. This is technically a breaking change but these structs were hidden from...
Fixes some links and adds the same badge for `tokio-native-tls`.
## What did you implement: A `Builder` to create a `Github` client with custom configuration. #### What (if anything) would need to be called out in the CHANGELOG for the...
This PR brings the crate up to date with updated dependencies, edition2021 and a [basic GitHub Actions workflow](https://github.com/nickelc/dissolve/actions/runs/4844502083).
clippy respects the rust version set in the package metadata and wouldn't break the build job for newer rust features. The current clap version in use dictates 1.64.0.