Fix TOML parsing with large unsigned integers

The parser parses everything as signed integers so the configuration
file will fail to parse large numbers that don't fit in an i64.

https://github.com/alexcrichton/toml-rs/issues/256
This commit is contained in:
Robbert van der Helm
2020-07-27 16:25:36 +02:00
parent 81696f4dde
commit f02dbb3755
3 changed files with 14 additions and 2 deletions
+6
View File
@@ -10,6 +10,12 @@ Versioning](https://semver.org/spec/v2.0.0.html).
### yabridgectl
- Fixed regression where the configuration file failed to parse after running
`yabridgectl sync` caused by
[alexcrichton/toml-rs#256](https://github.com/alexcrichton/toml-rs/issues/256)
4.0. If you have already run `yabridgectl sync` under yabridge 1.4.0, then
you'll have to manually remove the `[last_known_config]` section from
`~/.config/yabridgectl/config.toml`.
- Fixed issue with overwriting broken symlinks during `yabridgectl sync`.
## [1.4.0] - 2020-07-26