summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-12-29Merge pull request #258 from danieleades/dependabotMatthias Beyer
add dependabot config
2021-12-29Merge pull request #266 from danieleades/refactor/condense-bound-predicateMatthias Beyer
collapse repeated type bound
2021-12-29Merge pull request #267 from danieleades/refactor/cast-losslessMatthias Beyer
use infallible integer conversions where available
2021-12-29Merge pull request #265 from danieleades/refactor/redundant-closureMatthias Beyer
replace redundant closure with method
2021-12-29Merge pull request #260 from danieleades/chore/refactor/workflowMatthias Beyer
small refactors of 'msrv' workflow
2021-12-29Merge pull request #259 from danieleades/chore/clippy-configMatthias Beyer
add clippy msrv config
2021-12-29Merge pull request #257 from danieleades/refactor/remove-explicit-extern-crateMatthias Beyer
remove explicit 'extern crate' calls
2021-12-28remove explicit 'extern crate' callsDaniel Eades
2021-12-28use explicit imports for macrosDaniel Eades
2021-12-28add dependabot configDaniel Eades
2021-12-28add clippy msrv configDaniel Eades
2021-12-28use 'toolchain-rs' action to install Cargo componentsDaniel Eades
2021-12-28use 'minimal' toolchain in CIDaniel Eades
2021-12-28replace redundant closure with methodDaniel Eades
2021-12-28collapse repeated type boundDaniel Eades
2021-12-28use infallible integer conversions where availableDaniel Eades
2021-12-28Merge pull request #268 from matthiasbeyer/fix-nightly-clippyMatthias Beyer
Add #[must_use] annotations
2021-12-28Add #[must_use] annotationsMatthias Beyer
Clippy nightly fails the checks because it wants us to have a `#[must_use]` annotation on functions that return `Self`. So we add these annotations with this patch. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-12-28Merge pull request #253 from conradludgate/fix-examplesMatthias Beyer
make cargo recognise examples
2021-12-07Merge pull request #254 from matthiasbeyer/note-no-writebackMatthias Beyer
Add note about writing back config
2021-11-29Add note about writing back configMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-11-26Merge pull request #242 from ctron/feature/provide_env_1Matthias Beyer
feat: allow providing the environment for testing
2021-11-23cargo fmt --allConrad Ludgate
2021-11-23reduce use of outdated languageConrad Ludgate
2021-11-23fix config paths in examplesConrad Ludgate
2021-11-23fix examples to work as cargo expectsConrad Ludgate
2021-11-23Merge pull request #250 from conradludgate/pathdiffMatthias Beyer
chore: use pathdiff crate
2021-11-23Merge pull request #251 from conradludgate/value-deserializeMatthias Beyer
rename try_into to try_deserialize to avoid confusion
2021-11-23Merge pull request #252 from conradludgate/deprecated-testsMatthias Beyer
update tests not use deprecated methods
2021-11-23update tests not use deprecated methodsConrad Ludgate
2021-11-23rename try_into to try_deserialize to avoid confusionConrad Ludgate
2021-11-22feat: allow providing the environment for testingJens Reimann
closes #241 Co-authored-by: Conrad Ludgate <conradludgate@gmail.com>
2021-11-21chore: replace path_relative_from function with pathdiff crateConrad Ludgate
2021-11-21Merge pull request #248 from conradludgate/simplify-some-codeMatthias Beyer
chore: some file read simplifications
2021-11-21chore: some file read simplificationsConrad Ludgate
2021-11-21Merge pull request #178 from matthiasbeyer/integersMatthias Beyer
Add support for different sized integers
2021-11-21Add support for unsigned integersMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-11-21Remove support for integers smaller than i64Matthias Beyer
All our backend crates do not support integers smaller than i64, so there's no point in supporting them either. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-11-21Add test for testing value typeMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-11-21Add support for different sized integersMatthias Beyer
This also enables support for 128 bit integers. Nothing is tested, though. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-11-21Merge pull request #247 from conradludgate/absolute-path-current-dirMatthias Beyer
feat: allow for current_dir failure
2021-11-21chore: fix find_file tooConrad Ludgate
2021-11-21feat: allow for current_dir failureConrad Ludgate
2021-11-20Merge pull request #249 from matthiasbeyer/pin-warpMatthias Beyer
Fix: Pin the version of warp in dev dependencies
2021-11-20Fix: Pin the version of warp in dev dependenciesConrad Ludgate
Because newest version updates one of its dependencies which then uses const generics, which we do not support on our MSRV. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2021-11-08Merge pull request #219 from szarykott/trait_formatMatthias Beyer
Introduce `Format` trait
2021-10-28Merge pull request #246 from elaye/nom-updateMatthias Beyer
Update nom to v7
2021-10-28Update nom to v7Elie Génard
2021-10-27Fix reqwest version to make it work on rust 1.46Radosław Kot
2021-10-23Change FileExtensions (rename, make subtrait)Radosław Kot