1
0
Fork 0

Upgrade NIH-log to 0.3.1

This fixes the local time offsets on Linux.
This commit is contained in:
Robbert van der Helm 2023-04-24 23:57:52 +02:00
parent 5e69910616
commit 1cedd1fd7e
3 changed files with 6 additions and 3 deletions

View file

@ -26,6 +26,9 @@ state is to list breaking changes.
### Fixed ### Fixed
- The logger now uses the correct local time offset on Linux instead of
defaulting to UTC due to some implementation details of the underlying `time`
crate.
- The buffer changes from March 31st broke the sample accurate automation - The buffer changes from March 31st broke the sample accurate automation
feature. This has now been fixed. feature. This has now been fixed.

4
Cargo.lock generated
View file

@ -2508,9 +2508,9 @@ dependencies = [
[[package]] [[package]]
name = "nih_log" name = "nih_log"
version = "0.3.0" version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1d8a01d9663de15dbec9eaa9b7c261588e615ec204797b63039a2b0f30680fd" checksum = "d0cdb52ef79af48ae110401c883bdb9c15e0306a99ab6ecf18bc52068b668e54"
dependencies = [ dependencies = [
"atty", "atty",
"log", "log",

View file

@ -87,7 +87,7 @@ crossbeam = "0.8"
lazy_static = "1.4" lazy_static = "1.4"
log = { version = "0.4", features = ["std", "release_max_level_info"] } log = { version = "0.4", features = ["std", "release_max_level_info"] }
midi-consts = "0.1" midi-consts = "0.1"
nih_log = "0.3.0" nih_log = "0.3.1"
parking_lot = "0.12" parking_lot = "0.12"
raw-window-handle = "0.4" raw-window-handle = "0.4"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }