Browse Source

upgrade dependencies, 1.1.1

master
Herbert Poul 3 years ago
parent
commit
876bbaed9b
  1. 4
      CHANGELOG.md
  2. 2
      analysis_options.yaml
  3. 1
      lib/src/utils.dart
  4. 22
      pubspec.lock
  5. 6
      pubspec.yaml

4
CHANGELOG.md

@ -1,3 +1,7 @@
## 1.1.1
* Upgrade dependencies.
## 1.1.0+1 ## 1.1.0+1
* Some helper methods to distinguish ffi implementations from dart only * Some helper methods to distinguish ffi implementations from dart only

2
analysis_options.yaml

@ -1,7 +1,7 @@
# Defines a default set of lint rules enforced for # Defines a default set of lint rules enforced for
# projects at Google. For details and rationale, # projects at Google. For details and rationale,
# see https://github.com/dart-lang/pedantic#enabled-lints. # see https://github.com/dart-lang/pedantic#enabled-lints.
include: package:pedantic/analysis_options.yaml include: package:lints/recommended.yaml
analyzer: analyzer:
strong-mode: strong-mode:

1
lib/src/utils.dart

@ -1,6 +1,5 @@
// from https://github.com/hanabi1224/flutter_native_extensions/blob/master/src/compression/dart_native_compression/lib/utils/uint8_list_utils.dart // from https://github.com/hanabi1224/flutter_native_extensions/blob/master/src/compression/dart_native_compression/lib/utils/uint8_list_utils.dart
import 'dart:ffi'; import 'dart:ffi';
import 'dart:io';
import 'dart:typed_data'; import 'dart:typed_data';

22
pubspec.lock

@ -7,27 +7,27 @@ packages:
name: ffi name: ffi
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.2" version: "2.0.0"
lints:
dependency: "direct dev"
description:
name: lints
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
logging: logging:
dependency: "direct main" dependency: "direct main"
description: description:
name: logging name: logging
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.0.1" version: "1.0.2"
path: path:
dependency: "direct main" dependency: "direct main"
description: description:
name: path name: path
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.8.0" version: "1.8.2"
pedantic:
dependency: "direct dev"
description:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.11.1"
sdks: sdks:
dart: ">=2.12.0 <3.0.0" dart: ">=2.17.0 <3.0.0"

6
pubspec.yaml

@ -1,15 +1,15 @@
name: argon2_ffi_base name: argon2_ffi_base
description: Base package defining the interface for an Argon2 implementation. description: Base package defining the interface for an Argon2 implementation.
version: 1.1.0+1 version: 1.1.1
homepage: https://github.com/authpass/argon2_ffi_base homepage: https://github.com/authpass/argon2_ffi_base
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
dependencies: dependencies:
ffi: ">=1.0.0 <2.0.0" ffi: ">=1.0.0 <3.0.0"
logging: ">=1.0.0 <2.0.0" logging: ">=1.0.0 <2.0.0"
path: ">=1.8.0 <2.0.0" path: ">=1.8.0 <2.0.0"
dev_dependencies: dev_dependencies:
pedantic: ">=1.11.0 <2.0.0" lints: ^2.0.0

Loading…
Cancel
Save