Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrat committed Feb 15, 2024
1 parent 1160593 commit 77820dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions lib/src/kdbx_object.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ import 'package:kdbx/src/kdbx_xml.dart';
import 'package:logging/logging.dart';
import 'package:meta/meta.dart';
import 'package:quiver/iterables.dart';
import 'package:uuid/data.dart';
import 'package:uuid/rng.dart';
import 'package:uuid/uuid.dart';
import 'package:uuid/uuid_util.dart';
import 'package:xml/xml.dart';

import 'kdbx_custom_data.dart';
Expand Down Expand Up @@ -324,8 +325,7 @@ class KdbxUuid {
/// 128 bits set to zero.
static const NIL = KdbxUuid('AAAAAAAAAAAAAAAAAAAAAA==');

static const Uuid uuidGenerator =
Uuid(options: <String, dynamic>{'grng': UuidUtil.cryptoRNG});
static Uuid uuidGenerator = Uuid(goptions: GlobalOptions(CryptoRNG()));

/// base64 representation of uuid.
final String uuid;
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: kdbx
description: KeepassX format implementation in pure dart. (kdbx 3.x and 4.x support).
version: 0.5.20+0
version: 0.6.0+0
homepage: https://github.com/kee-org/kdbx.dart
publish_to: none

Expand All @@ -12,7 +12,7 @@ dependencies:
crypto: ^3.0.3
pointycastle: ^3.7.3
xml: '>=6.4.2 <7.0.0'
uuid: ^3.0.7
uuid: ^4.3.3
meta: ^1.9.1
clock: ^1.1.1
convert: ^3.1.1
Expand All @@ -31,6 +31,6 @@ dependencies:
argon2_ffi_base: ^1.1.1

dev_dependencies:
flutter_lints: ">=2.0.0 <3.0.0"
test: ^1.24.9
flutter_lints: ">=3.0.1"
test: ^1.25.2
fake_async: ^1.3.1

0 comments on commit 77820dc

Please sign in to comment.