Skip to content

Commit

Permalink
dart pub upgrade --major-versions --tighten (#717)
Browse files Browse the repository at this point in the history
Co-authored-by: sensuikan1973 <sensuikan1973@users.noreply.github.com>
  • Loading branch information
sensuikan1973 and sensuikan1973 authored Feb 1, 2025
1 parent 802e277 commit f0f0023
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ packages:
dependency: "direct dev"
description:
name: pedantic_sensuikan1973
sha256: a6bd2d3eab16b9708a1137add7876daa421546b4b43f4815c1e892aa27507e79
sha256: "63c17b9fd94d54867b3b8fab7bd937d74b40bc2610a14acd38de2d096feebe3e"
url: "https://pub.dev"
source: hosted
version: "5.9.0"
version: "5.10.0"
pub_semver:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ dependencies:

dev_dependencies:
analyzer: ^7.2.0
pedantic_sensuikan1973: ^5.9.0
pedantic_sensuikan1973: ^5.10.0
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
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,10 @@ packages:
dependency: "direct dev"
description:
name: pedantic_sensuikan1973
sha256: a6bd2d3eab16b9708a1137add7876daa421546b4b43f4815c1e892aa27507e79
sha256: "63c17b9fd94d54867b3b8fab7bd937d74b40bc2610a14acd38de2d096feebe3e"
url: "https://pub.dev"
source: hosted
version: "5.9.0"
version: "5.10.0"
pool:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dev_dependencies:
coverage: ^1.11.1 # See: https://github.com/dart-lang/test/issues/1265
ffigen: ^16.1.0
pana: ^0.22.18
pedantic_sensuikan1973: ^5.9.0
pedantic_sensuikan1973: ^5.10.0
test: ^1.25.14

topics:
Expand Down

0 comments on commit f0f0023

Please sign in to comment.