Skip to content

Commit

Permalink
dart pub upgrade && dart pub upgrade --major-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sensuikan1973 authored Dec 3, 2024
1 parent 369a5a2 commit c217929
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
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> _timezone = _lookup<ffi.Long>('timezone');
late final ffi.Pointer<ffi.Long> _timezone1 = _lookup<ffi.Long>('timezone');

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

set timezone(int value) => _timezone.value = value;
set timezone1(int value) => _timezone1.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 @@ -10148,7 +10148,7 @@ final class timeval64 extends ffi.Struct {
external int tv_usec;
}

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

Expand Down
20 changes: 10 additions & 10 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -330,10 +330,10 @@ packages:
dependency: "direct dev"
description:
name: pana
sha256: f278f836a25055c549deedcb84e0ddb9436848d57c1a01d3061742a8026ab01e
sha256: c3f928a6517ad4eb631e839c41b61ca2895263f823c66f1a5c411596146556f1
url: "https://pub.dev"
source: hosted
version: "0.22.15"
version: "0.22.16"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -434,10 +434,10 @@ packages:
dependency: transitive
description:
name: shelf_web_socket
sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611"
sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67
url: "https://pub.dev"
source: hosted
version: "2.0.0"
version: "2.0.1"
source_map_stack_trace:
dependency: transitive
description:
Expand Down Expand Up @@ -506,26 +506,26 @@ packages:
dependency: "direct dev"
description:
name: test
sha256: "713a8789d62f3233c46b4a90b174737b2c04cb6ae4500f2aa8b1be8f03f5e67f"
sha256: be7697dcfa9d47333e6ceb38400b4c8b8de15dc97023e8eb219189ba19c5d423
url: "https://pub.dev"
source: hosted
version: "1.25.8"
version: "1.25.11"
test_api:
dependency: transitive
description:
name: test_api
sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c"
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd
url: "https://pub.dev"
source: hosted
version: "0.7.3"
version: "0.7.4"
test_core:
dependency: transitive
description:
name: test_core
sha256: "12391302411737c176b0b5d6491f466b0dd56d4763e347b6714efbaa74d7953d"
sha256: "3e47cac78f28a4dd71ea232db15fda6345934f472c2f70f97d35476809e045ca"
url: "https://pub.dev"
source: hosted
version: "0.6.5"
version: "0.6.7"
typed_data:
dependency: transitive
description:
Expand Down

0 comments on commit c217929

Please sign in to comment.