Skip to content

Commit

Permalink
vendor: upgrade packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lambiengcode committed Dec 18, 2024
1 parent 9cd954f commit 8c908a4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
6 changes: 4 additions & 2 deletions lib/core/api/base/dio_configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ class DioConfiguration {
await Rhttp.init();
final rhttpAdapter = await RhttpCompatibleClient.create(
settings: ClientSettings(
timeout: 10.seconds,
connectTimeout: 10.seconds,
timeoutSettings: TimeoutSettings(
timeout: 10.seconds,
connectTimeout: 10.seconds,
),
throwOnStatusCode: false,
),
);
Expand Down
2 changes: 1 addition & 1 deletion lib/flutter_waterbus_sdk.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library waterbus_sdk;
library;

import 'package:flutter/foundation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/native/picture-in-picture/pip_web.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@JS()
library t;
library;

import 'dart:js_interop';

Expand Down
2 changes: 1 addition & 1 deletion lib/native/virtual_background/virtual_background_web.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@JS()
library t;
library;

import 'dart:convert';
import 'dart:js_interop';
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/http/dio_transformer.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library dio_flutter_transformer;
library;

import 'dart:convert';

Expand Down
19 changes: 10 additions & 9 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ dependencies:
sdk: flutter

# Network
connectivity_plus: ^6.0.5
rhttp: ^0.6.1
connectivity_plus: ^6.1.1
rhttp: ^0.9.8
http: ^1.2.2
dio: ^5.6.0
dio_smart_retry: ^6.0.0
dio_cache_interceptor: ^3.5.0
dio_cache_interceptor: ^3.5.1
dio_compatibility_layer: ^0.1.0
socket_io_client: ^2.0.3+1
socket_io_client: ^3.0.2

# Storage
hive: ^2.2.3
Expand All @@ -30,7 +30,7 @@ dependencies:
collection: '^1.16.0'
universal_io: ^2.2.2
equatable: ^2.0.5
logger: ^2.4.0
logger: ^2.5.0
path_provider: ^2.1.4
wakelock_plus: ^1.2.8
replay_kit_launcher: ^1.0.0
Expand All @@ -47,19 +47,19 @@ dependencies:
# path: /Users/lambiengcode/Documents/waterbus/flutter-webrtc-plus

# Dependency Injection
get_it: ^7.6.8
get_it: ^8.0.3
injectable: ^2.4.4

dev_dependencies:
flutter_test:
sdk: flutter
# Lints
flutter_lints: ^4.0.0
flutter_lints: ^5.0.0
import_sorter: ^4.6.0

# Code Generator
injectable_generator: ^2.6.2
build_runner: ^2.4.12
build_runner: ^2.4.13
mockito: ^5.4.4

# For information on the generic Dart part of this file, see the
Expand All @@ -82,4 +82,5 @@ topics:
- webrtc
- sfu
- video
- conferencing
- conferencing
- waterbus

0 comments on commit 8c908a4

Please sign in to comment.