Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Skycoder42 committed Oct 24, 2023
1 parent 7c63bcc commit e7000f0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 13 deletions.
13 changes: 13 additions & 0 deletions packages/etebase/lib/src/gen/ffi/libetebase.ffi.client.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 13 additions & 8 deletions packages/etebase/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ dependencies:
synchronized: ^3.1.0

dev_dependencies:
analyzer: ^6.2.0
analyzer: ^6.3.0
build: ^2.4.1
build_config: ^1.1.1
build_runner: ^2.4.6
code_builder: ^4.6.0
custom_lint: ^0.5.3
code_builder: ^4.7.0
custom_lint: ^0.5.4
dart_pre_commit: ^5.2.1
dart_test_tools: ^5.3.0
dart_test_tools: ^5.4.0
ffigen: ^9.0.1
freezed: ^2.4.2
mocktail: ^1.0.0
freezed: ^2.4.5
mocktail: ^1.0.1
source_gen: ^1.4.0
source_helper: ^1.3.4
test: ^1.24.6
uuid: ^3.0.7
test: ^1.24.8
uuid: ^4.1.0

ffigen:
output: lib/src/gen/ffi/libetebase.ffi.dart
Expand Down Expand Up @@ -79,3 +79,8 @@ cider:
link_template:
tag: https://github.com/Skycoder42/etebase-dart/releases/tag/etebase-v%tag%
diff: https://github.com/Skycoder42/etebase-dart/compare/etebase-v%from%...etebase-v%to%

dart_pre_commit:
pull-up-dependencies:
allowed:
- meta
9 changes: 4 additions & 5 deletions packages/etebase/test/integration/util/library_loader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ import 'dart:io';

// ignore: no_self_package_imports
import 'package:etebase/etebase.dart';
import 'package:uuid/data.dart';
import 'package:uuid/rng.dart';
import 'package:uuid/uuid.dart';
import 'package:uuid/uuid_util.dart';

const _libEtebaseBasePath = 'tool/integration/libetebase/lib/';

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

final serverUri = Uri.http('localhost:3735', '/');
Expand Down

0 comments on commit e7000f0

Please sign in to comment.