Skip to content

Commit

Permalink
dart pub upgrade && dart pub upgrade --major-versions (#604)
Browse files Browse the repository at this point in the history
Co-authored-by: sensuikan1973 <[email protected]>
  • Loading branch information
sensuikan1973 and sensuikan1973 authored Aug 15, 2024
1 parent 8065bc8 commit 8c051f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ packages:
dependency: transitive
description:
name: crypto
sha256: "1dceb0cf05cb63a7852c11560060e53ec2f182079a16ced6f4395c5b0875baf8"
sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27
url: "https://pub.dev"
source: hosted
version: "3.0.4"
version: "3.0.5"
ffi:
dependency: "direct main"
description:
Expand Down
8 changes: 4 additions & 4 deletions lib/src/ffi/bindings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1553,11 +1553,11 @@ class LibEdaxBindings {
ffi.Pointer<ffi.NativeFunction<ffi.LongLong Function()>> value) =>
_time_clock.value = value;

late final ffi.Pointer<ffi.Long> _timezone1 = _lookup<ffi.Long>('timezone');
late final ffi.Pointer<ffi.Long> _timezone = _lookup<ffi.Long>('timezone');

int get timezone1 => _timezone1.value;
int get timezone => _timezone.value;

set timezone1(int value) => _timezone1.value = value;
set timezone(int value) => _timezone.value = value;

late final ffi.Pointer<ffi.Pointer<ffi.Pointer<ffi.Char>>> _tzname =
_lookup<ffi.Pointer<ffi.Pointer<ffi.Char>>>('tzname');
Expand Down Expand Up @@ -9948,7 +9948,7 @@ final class timeval64 extends ffi.Struct {
external int tv_usec;
}

final class timezone extends ffi.Struct {
final class timezone1 extends ffi.Struct {
@ffi.Int()
external int tz_minuteswest;

Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ packages:
dependency: transitive
description:
name: crypto
sha256: "1dceb0cf05cb63a7852c11560060e53ec2f182079a16ced6f4395c5b0875baf8"
sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27
url: "https://pub.dev"
source: hosted
version: "3.0.4"
version: "3.0.5"
csslib:
dependency: transitive
description:
Expand Down

0 comments on commit 8c051f5

Please sign in to comment.