Skip to content

Commit

Permalink
Update package dependencies and adjust imports
Browse files Browse the repository at this point in the history
Updated the version of xml in streamer's pubspec.yaml and changed the import of IO in epub_controller.dart. Additionally, revised the archive and image package versions in shared's pubspec.yaml. These modifications ensure we're using the correct package versions and clean up import redundancy.
  • Loading branch information
jmgeffroy committed Jan 21, 2024
1 parent 7f1f633 commit 78f7a44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions components/navigator/lib/src/epub/epub_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:io';

import 'package:dartx/dartx.dart';
import 'package:fimber/fimber.dart';
import 'package:flutter/widgets.dart';
Expand All @@ -13,6 +11,7 @@ import 'package:mno_server/mno_server.dart';
import 'package:mno_shared/publication.dart';
import 'package:mno_streamer/parser.dart';
import 'package:preload_page_view/preload_page_view.dart';
import 'package:universal_io/io.dart';

class EpubController extends PublicationController {
PreloadPageController? _pageController;
Expand Down
4 changes: 2 additions & 2 deletions components/shared/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
archive: ^3.4.10
archive: ^3.4.9
collection: ^1.18.0
crypto: ^3.0.3
dartx: ^1.2.0
dfunc: ^0.9.0
equatable: ^2.0.5
fimber: ^0.7.0
image: ^4.1.3
image: ^4.1.4
intl: ^0.19.0
universal_io: ^2.2.2
xml: ^6.5.0
Expand Down
2 changes: 1 addition & 1 deletion components/streamer/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
fimber: ^0.7.0
image: ^4.1.4
universal_io: ^2.2.2
xml: ^6.3.0
xml: ^6.5.0
mno_commons:
path: ../commons
mno_shared:
Expand Down

0 comments on commit 78f7a44

Please sign in to comment.