-
-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #457 from Carapacik/develop
Support latest rxdart version and align Dart SDK version
- Loading branch information
Showing
8 changed files
with
30 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
name: flutter_cache_manager | ||
description: Generic cache manager for flutter. Saves web files on the storages of the device and saves the cache info using sqflite. | ||
version: 3.3.2 | ||
version: 3.3.3 | ||
homepage: https://github.com/Baseflow/flutter_cache_manager/tree/develop/flutter_cache_manager | ||
topics: | ||
- cache | ||
- cache-manager | ||
environment: | ||
sdk: '>=2.17.0 <4.0.0' | ||
sdk: '>=3.0.0 <4.0.0' | ||
|
||
dependencies: | ||
clock: ^1.1.0 | ||
collection: ^1.18.0 | ||
clock: ^1.1.1 | ||
collection: ^1.16.0 | ||
file: ^7.0.0 | ||
flutter: | ||
sdk: flutter | ||
http: ^1.2.1 | ||
http: ^1.1.0 | ||
path: ^1.9.0 | ||
path_provider: ^2.1.3 | ||
rxdart: ^0.27.7 | ||
sqflite: ^2.3.3 | ||
path_provider: ^2.1.2 | ||
rxdart: '>=0.27.7 <0.29.0' | ||
sqflite: ^2.3.0 | ||
uuid: ^4.4.0 | ||
|
||
dev_dependencies: | ||
build_runner: ^2.0.0 | ||
build_runner: ^2.4.0 | ||
flutter_lints: ^3.0.2 | ||
flutter_test: | ||
sdk: flutter | ||
mockito: ^5.0.0 | ||
mockito: ^5.4.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include: package:flutter_lints/flutter.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
name: flutter_cache_manager_firebase | ||
description: CacheManager implementation for firebase_storage. Uses the gs:// as key and translates to https:// | ||
version: 2.0.2 | ||
version: 2.0.3 | ||
homepage: https://github.com/Baseflow/flutter_cache_manager | ||
|
||
environment: | ||
sdk: ">=2.12.0 <4.0.0" | ||
sdk: ">=3.0.0 <4.0.0" | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
flutter_cache_manager: ^3.0.0 | ||
firebase_storage: ^11.7.4 | ||
path_provider: ^2.1.3 | ||
flutter_cache_manager: ^3.3.2 | ||
firebase_storage: '>=11.7.4 <13.0.0' | ||
path_provider: ^2.1.2 | ||
path: ^1.9.0 | ||
|
||
dev_dependencies: | ||
flutter_lints: ^3.0.2 | ||
flutter_test: | ||
sdk: flutter |