Commit b64b4815216922f36ad0aa7ee30f0ef0b3b9cf69
1 parent
c50d95f2
ios 版本号修改和编译问题修改。
Showing
6 changed files
with
476 additions
and
438 deletions
.fvmrc
ios/Podfile
| 1 | 1 | source 'https://cdn.cocoapods.org/' |
| 2 | 2 | |
| 3 | -platform :ios, '12.0' | |
| 3 | +platform :ios, '13.0' | |
| 4 | 4 | |
| 5 | 5 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. |
| 6 | 6 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' |
| ... | ... | @@ -42,7 +42,28 @@ end |
| 42 | 42 | post_install do |installer| |
| 43 | 43 | installer.pods_project.targets.each do |target| |
| 44 | 44 | flutter_additional_ios_build_settings(target) |
| 45 | + | |
| 46 | + # umeng_common_sdk 1.3.1 的 iOS 源码里混入了一个 flutter create 模板生成的 | |
| 47 | + # UmengCommonSdkPlugin.swift,与同名的 ObjC 类撞车,编译报 | |
| 48 | + # "duplicate interface definition for class 'UmengCommonSdkPlugin'"。 | |
| 49 | + # 插件实际注册的是 ObjC 实现,所以把多余的 Swift 文件从编译源里剔除。 | |
| 50 | + if target.name == 'umeng_common_sdk' | |
| 51 | + target.source_build_phase.files.to_a.each do |build_file| | |
| 52 | + build_file.remove_from_project if build_file.display_name.to_s.end_with?('UmengCommonSdkPlugin.swift') | |
| 53 | + end | |
| 54 | + end | |
| 55 | + | |
| 45 | 56 | target.build_configurations.each do |config| |
| 57 | + # fluwx 的源码用 #import <WXApi.h>(裸尖括号)引用微信 SDK 头文件, | |
| 58 | + # 而 WechatOpenSDK-XCFramework 2.0.7 的 xcframework 是 static framework 形态, | |
| 59 | + # CocoaPods 只会为 static library 形态的 xcframework 自动追加 -I 头文件搜索路径, | |
| 60 | + # 所以这里手动补上,否则 fluwx 编译报 'WXApi.h' file not found。 | |
| 61 | + if target.name == 'fluwx' | |
| 62 | + wechat_headers = '"${PODS_XCFRAMEWORKS_BUILD_DIR}/WechatOpenSDK-XCFramework/WechatOpenSDK.framework/Headers"' | |
| 63 | + header_paths = config.build_settings['HEADER_SEARCH_PATHS'] ||= ['$(inherited)'] | |
| 64 | + header_paths << wechat_headers unless header_paths.include?(wechat_headers) | |
| 65 | + end | |
| 66 | + | |
| 46 | 67 | config.build_settings['SWIFT_VERSION'] = '5.0' # required by simple_permission |
| 47 | 68 | config.build_settings['ENABLE_BITCODE'] = 'NO' |
| 48 | 69 | config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ | ... | ... |
ios/Runner.xcodeproj/project.pbxproj
| ... | ... | @@ -2319,8 +2319,8 @@ |
| 2319 | 2319 | CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; |
| 2320 | 2320 | CODE_SIGN_IDENTITY = "Apple Development"; |
| 2321 | 2321 | CODE_SIGN_STYLE = Automatic; |
| 2322 | - CURRENT_PROJECT_VERSION = 24; | |
| 2323 | - DEVELOPMENT_TEAM = T8P9KW8GWH; | |
| 2322 | + CURRENT_PROJECT_VERSION = 25; | |
| 2323 | + DEVELOPMENT_TEAM = 6H784N43ZN; | |
| 2324 | 2324 | ENABLE_BITCODE = NO; |
| 2325 | 2325 | INFOPLIST_FILE = Runner/Info.plist; |
| 2326 | 2326 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
| ... | ... | @@ -2328,7 +2328,7 @@ |
| 2328 | 2328 | "$(inherited)", |
| 2329 | 2329 | "@executable_path/Frameworks", |
| 2330 | 2330 | ); |
| 2331 | - MARKETING_VERSION = 1.7.8; | |
| 2331 | + MARKETING_VERSION = 1.8.4; | |
| 2332 | 2332 | OTHER_CFLAGS = ( |
| 2333 | 2333 | "-DNDEBUG", |
| 2334 | 2334 | "'-std=gnu99'", |
| ... | ... | @@ -2412,11 +2412,8 @@ |
| 2412 | 2412 | "-framework", |
| 2413 | 2413 | "\"Reachability\"", |
| 2414 | 2414 | "-framework", |
| 2415 | - "-framework", | |
| 2416 | 2415 | "\"SystemConfiguration\"", |
| 2417 | 2416 | "-framework", |
| 2418 | - "\"Toast\"", | |
| 2419 | - "-framework", | |
| 2420 | 2417 | "\"audio_session\"", |
| 2421 | 2418 | "-framework", |
| 2422 | 2419 | "\"audioplayers_darwin\"", |
| ... | ... | @@ -2443,7 +2440,7 @@ |
| 2443 | 2440 | "-framework", |
| 2444 | 2441 | "\"shared_preferences_foundation\"", |
| 2445 | 2442 | "-framework", |
| 2446 | - "\"sqflite\"", | |
| 2443 | + "\"sqflite_darwin\"", | |
| 2447 | 2444 | "-framework", |
| 2448 | 2445 | "\"url_launcher_ios\"", |
| 2449 | 2446 | "-framework", |
| ... | ... | @@ -2660,8 +2657,8 @@ |
| 2660 | 2657 | CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; |
| 2661 | 2658 | CODE_SIGN_IDENTITY = "Apple Development"; |
| 2662 | 2659 | CODE_SIGN_STYLE = Automatic; |
| 2663 | - CURRENT_PROJECT_VERSION = 24; | |
| 2664 | - DEVELOPMENT_TEAM = T8P9KW8GWH; | |
| 2660 | + CURRENT_PROJECT_VERSION = 25; | |
| 2661 | + DEVELOPMENT_TEAM = 6H784N43ZN; | |
| 2665 | 2662 | ENABLE_BITCODE = NO; |
| 2666 | 2663 | HEADER_SEARCH_PATHS = ( |
| 2667 | 2664 | "$(inherited)", |
| ... | ... | @@ -2691,7 +2688,7 @@ |
| 2691 | 2688 | "$(inherited)", |
| 2692 | 2689 | "@executable_path/Frameworks", |
| 2693 | 2690 | ); |
| 2694 | - MARKETING_VERSION = 1.7.8; | |
| 2691 | + MARKETING_VERSION = 1.8.4; | |
| 2695 | 2692 | ONLY_ACTIVE_ARCH = NO; |
| 2696 | 2693 | OTHER_CFLAGS = "'-std=gnu99'"; |
| 2697 | 2694 | OTHER_CPLUSPLUSFLAGS = "'-std=c++11'"; |
| ... | ... | @@ -2770,11 +2767,8 @@ |
| 2770 | 2767 | "-framework", |
| 2771 | 2768 | "\"Reachability\"", |
| 2772 | 2769 | "-framework", |
| 2773 | - "-framework", | |
| 2774 | 2770 | "\"SystemConfiguration\"", |
| 2775 | 2771 | "-framework", |
| 2776 | - "\"Toast\"", | |
| 2777 | - "-framework", | |
| 2778 | 2772 | "\"audio_session\"", |
| 2779 | 2773 | "-framework", |
| 2780 | 2774 | "\"audioplayers_darwin\"", |
| ... | ... | @@ -2801,7 +2795,7 @@ |
| 2801 | 2795 | "-framework", |
| 2802 | 2796 | "\"shared_preferences_foundation\"", |
| 2803 | 2797 | "-framework", |
| 2804 | - "\"sqflite\"", | |
| 2798 | + "\"sqflite_darwin\"", | |
| 2805 | 2799 | "-framework", |
| 2806 | 2800 | "\"url_launcher_ios\"", |
| 2807 | 2801 | "-framework", |
| ... | ... | @@ -2862,8 +2856,8 @@ |
| 2862 | 2856 | CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; |
| 2863 | 2857 | CODE_SIGN_IDENTITY = "Apple Development"; |
| 2864 | 2858 | CODE_SIGN_STYLE = Automatic; |
| 2865 | - CURRENT_PROJECT_VERSION = 24; | |
| 2866 | - DEVELOPMENT_TEAM = T8P9KW8GWH; | |
| 2859 | + CURRENT_PROJECT_VERSION = 25; | |
| 2860 | + DEVELOPMENT_TEAM = 6H784N43ZN; | |
| 2867 | 2861 | ENABLE_BITCODE = NO; |
| 2868 | 2862 | INFOPLIST_FILE = Runner/Info.plist; |
| 2869 | 2863 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
| ... | ... | @@ -2871,7 +2865,7 @@ |
| 2871 | 2865 | "$(inherited)", |
| 2872 | 2866 | "@executable_path/Frameworks", |
| 2873 | 2867 | ); |
| 2874 | - MARKETING_VERSION = 1.7.8; | |
| 2868 | + MARKETING_VERSION = 1.8.4; | |
| 2875 | 2869 | OTHER_CFLAGS = ( |
| 2876 | 2870 | "-DNDEBUG", |
| 2877 | 2871 | "'-std=gnu99'", |
| ... | ... | @@ -2955,11 +2949,8 @@ |
| 2955 | 2949 | "-framework", |
| 2956 | 2950 | "\"Reachability\"", |
| 2957 | 2951 | "-framework", |
| 2958 | - "-framework", | |
| 2959 | 2952 | "\"SystemConfiguration\"", |
| 2960 | 2953 | "-framework", |
| 2961 | - "\"Toast\"", | |
| 2962 | - "-framework", | |
| 2963 | 2954 | "\"audio_session\"", |
| 2964 | 2955 | "-framework", |
| 2965 | 2956 | "\"audioplayers_darwin\"", |
| ... | ... | @@ -2986,7 +2977,7 @@ |
| 2986 | 2977 | "-framework", |
| 2987 | 2978 | "\"shared_preferences_foundation\"", |
| 2988 | 2979 | "-framework", |
| 2989 | - "\"sqflite\"", | |
| 2980 | + "\"sqflite_darwin\"", | |
| 2990 | 2981 | "-framework", |
| 2991 | 2982 | "\"url_launcher_ios\"", |
| 2992 | 2983 | "-framework", | ... | ... |
ios/Runner/AppDelegate.swift
lib/common/request/exception.dart
| ... | ... | @@ -67,6 +67,8 @@ class ApiException implements Exception { |
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | 69 | } |
| 70 | + case DioExceptionType.transformTimeout: | |
| 71 | + return BadRequestException(customErrorCode, "数据解析超时"); | |
| 70 | 72 | } |
| 71 | 73 | var errorCode = exception.response?.statusCode ?? customErrorCode; |
| 72 | 74 | var errorMsg = kDebugMode ? (exception.response?.statusMessage ?? exception.message) : unknownException; | ... | ... |
pubspec.lock
| ... | ... | @@ -5,56 +5,56 @@ packages: |
| 5 | 5 | dependency: transitive |
| 6 | 6 | description: |
| 7 | 7 | name: _fe_analyzer_shared |
| 8 | - sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7" | |
| 9 | - url: "https://pub.flutter-io.cn" | |
| 8 | + sha256: da0d9209ca76bde579f2da330aeb9df62b6319c834fa7baae052021b0462401f | |
| 9 | + url: "https://pub.dev" | |
| 10 | 10 | source: hosted |
| 11 | - version: "67.0.0" | |
| 11 | + version: "85.0.0" | |
| 12 | 12 | analyzer: |
| 13 | 13 | dependency: transitive |
| 14 | 14 | description: |
| 15 | 15 | name: analyzer |
| 16 | - sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d" | |
| 17 | - url: "https://pub.flutter-io.cn" | |
| 16 | + sha256: "974859dc0ff5f37bc4313244b3218c791810d03ab3470a579580279ba971a48d" | |
| 17 | + url: "https://pub.dev" | |
| 18 | 18 | source: hosted |
| 19 | - version: "6.4.1" | |
| 19 | + version: "7.7.1" | |
| 20 | 20 | archive: |
| 21 | 21 | dependency: transitive |
| 22 | 22 | description: |
| 23 | 23 | name: archive |
| 24 | - sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d | |
| 25 | - url: "https://pub.flutter-io.cn" | |
| 24 | + sha256: ace891da0862b0e4cabbb064ee3fd87b2728b898949fdb366d83fe98342c9f19 | |
| 25 | + url: "https://pub.dev" | |
| 26 | 26 | source: hosted |
| 27 | - version: "3.6.1" | |
| 27 | + version: "4.2.0" | |
| 28 | 28 | args: |
| 29 | 29 | dependency: transitive |
| 30 | 30 | description: |
| 31 | 31 | name: args |
| 32 | - sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6 | |
| 33 | - url: "https://pub.flutter-io.cn" | |
| 32 | + sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 | |
| 33 | + url: "https://pub.dev" | |
| 34 | 34 | source: hosted |
| 35 | - version: "2.6.0" | |
| 35 | + version: "2.7.0" | |
| 36 | 36 | async: |
| 37 | 37 | dependency: transitive |
| 38 | 38 | description: |
| 39 | 39 | name: async |
| 40 | 40 | sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" |
| 41 | - url: "https://pub.flutter-io.cn" | |
| 41 | + url: "https://pub.dev" | |
| 42 | 42 | source: hosted |
| 43 | 43 | version: "2.11.0" |
| 44 | 44 | audio_session: |
| 45 | 45 | dependency: "direct main" |
| 46 | 46 | description: |
| 47 | 47 | name: audio_session |
| 48 | - sha256: "343e83bc7809fbda2591a49e525d6b63213ade10c76f15813be9aed6657b3261" | |
| 49 | - url: "https://pub.flutter-io.cn" | |
| 48 | + sha256: "2b7fff16a552486d078bfc09a8cde19f426dc6d6329262b684182597bec5b1ac" | |
| 49 | + url: "https://pub.dev" | |
| 50 | 50 | source: hosted |
| 51 | - version: "0.1.21" | |
| 51 | + version: "0.1.25" | |
| 52 | 52 | audioplayers: |
| 53 | 53 | dependency: "direct main" |
| 54 | 54 | description: |
| 55 | 55 | name: audioplayers |
| 56 | 56 | sha256: c346ba5a39dc208f1bab55fc239855f573d69b0e832402114bf0b793622adc4d |
| 57 | - url: "https://pub.flutter-io.cn" | |
| 57 | + url: "https://pub.dev" | |
| 58 | 58 | source: hosted |
| 59 | 59 | version: "6.1.0" |
| 60 | 60 | audioplayers_android: |
| ... | ... | @@ -62,55 +62,55 @@ packages: |
| 62 | 62 | description: |
| 63 | 63 | name: audioplayers_android |
| 64 | 64 | sha256: "5a09cf83ac1a1a8e4392eafa5f66ddc21fc435a605d37542dd9c2f838d516e26" |
| 65 | - url: "https://pub.flutter-io.cn" | |
| 65 | + url: "https://pub.dev" | |
| 66 | 66 | source: hosted |
| 67 | 67 | version: "5.0.2" |
| 68 | 68 | audioplayers_darwin: |
| 69 | 69 | dependency: transitive |
| 70 | 70 | description: |
| 71 | 71 | name: audioplayers_darwin |
| 72 | - sha256: "34e1fb3a88ba02566615c6ca7173aa93b39cf61a38a05a729b60ba14c4899169" | |
| 73 | - url: "https://pub.flutter-io.cn" | |
| 72 | + sha256: c994b3bb3a921e4904ac40e013fbc94488e824fd7c1de6326f549943b0b44a91 | |
| 73 | + url: "https://pub.dev" | |
| 74 | 74 | source: hosted |
| 75 | - version: "6.1.0" | |
| 75 | + version: "6.4.0" | |
| 76 | 76 | audioplayers_linux: |
| 77 | 77 | dependency: transitive |
| 78 | 78 | description: |
| 79 | 79 | name: audioplayers_linux |
| 80 | - sha256: ce8383c1ff0db1ba93b5b0b8ef5b260ec2d0ce2598ad37dc8b946b773dd2c5fa | |
| 81 | - url: "https://pub.flutter-io.cn" | |
| 80 | + sha256: f75bce1ce864170ef5e6a2c6a61cd3339e1a17ce11e99a25bae4474ea491d001 | |
| 81 | + url: "https://pub.dev" | |
| 82 | 82 | source: hosted |
| 83 | - version: "4.1.0" | |
| 83 | + version: "4.2.1" | |
| 84 | 84 | audioplayers_platform_interface: |
| 85 | 85 | dependency: transitive |
| 86 | 86 | description: |
| 87 | 87 | name: audioplayers_platform_interface |
| 88 | - sha256: "6834dd48dfb7bc6c2404998ebdd161f79cd3774a7e6779e1348d54a3bfdcfaa5" | |
| 89 | - url: "https://pub.flutter-io.cn" | |
| 88 | + sha256: "0e2f6a919ab56d0fec272e801abc07b26ae7f31980f912f24af4748763e5a656" | |
| 89 | + url: "https://pub.dev" | |
| 90 | 90 | source: hosted |
| 91 | - version: "7.0.0" | |
| 91 | + version: "7.1.1" | |
| 92 | 92 | audioplayers_web: |
| 93 | 93 | dependency: transitive |
| 94 | 94 | description: |
| 95 | 95 | name: audioplayers_web |
| 96 | - sha256: "3609bdf0e05e66a3d9750ee40b1e37f2a622c4edb796cc600b53a90a30a2ace4" | |
| 97 | - url: "https://pub.flutter-io.cn" | |
| 96 | + sha256: faa8fa6587f996a6f604433b53af44c57a1407d4fe8dff5766cf63d6875e8de9 | |
| 97 | + url: "https://pub.dev" | |
| 98 | 98 | source: hosted |
| 99 | - version: "5.0.1" | |
| 99 | + version: "5.2.0" | |
| 100 | 100 | audioplayers_windows: |
| 101 | 101 | dependency: transitive |
| 102 | 102 | description: |
| 103 | 103 | name: audioplayers_windows |
| 104 | - sha256: "52b57c706a20fc85daa911be67381b3a5c9d03f8e27cb9fdb226de5bddf293b1" | |
| 105 | - url: "https://pub.flutter-io.cn" | |
| 104 | + sha256: bafff2b38b6f6d331887558ba6e0a01c9c208d9dbb3ad0005234db065122a734 | |
| 105 | + url: "https://pub.dev" | |
| 106 | 106 | source: hosted |
| 107 | - version: "4.1.0" | |
| 107 | + version: "4.3.0" | |
| 108 | 108 | bloc: |
| 109 | 109 | dependency: transitive |
| 110 | 110 | description: |
| 111 | 111 | name: bloc |
| 112 | 112 | sha256: "106842ad6569f0b60297619e9e0b1885c2fb9bf84812935490e6c5275777804e" |
| 113 | - url: "https://pub.flutter-io.cn" | |
| 113 | + url: "https://pub.dev" | |
| 114 | 114 | source: hosted |
| 115 | 115 | version: "8.1.4" |
| 116 | 116 | boolean_selector: |
| ... | ... | @@ -118,103 +118,103 @@ packages: |
| 118 | 118 | description: |
| 119 | 119 | name: boolean_selector |
| 120 | 120 | sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" |
| 121 | - url: "https://pub.flutter-io.cn" | |
| 121 | + url: "https://pub.dev" | |
| 122 | 122 | source: hosted |
| 123 | 123 | version: "2.1.1" |
| 124 | 124 | build: |
| 125 | 125 | dependency: transitive |
| 126 | 126 | description: |
| 127 | 127 | name: build |
| 128 | - sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" | |
| 129 | - url: "https://pub.flutter-io.cn" | |
| 128 | + sha256: cef23f1eda9b57566c81e2133d196f8e3df48f244b317368d65c5943d91148f0 | |
| 129 | + url: "https://pub.dev" | |
| 130 | 130 | source: hosted |
| 131 | - version: "2.4.1" | |
| 131 | + version: "2.4.2" | |
| 132 | 132 | build_config: |
| 133 | 133 | dependency: transitive |
| 134 | 134 | description: |
| 135 | 135 | name: build_config |
| 136 | - sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 | |
| 137 | - url: "https://pub.flutter-io.cn" | |
| 136 | + sha256: "4ae2de3e1e67ea270081eaee972e1bd8f027d459f249e0f1186730784c2e7e33" | |
| 137 | + url: "https://pub.dev" | |
| 138 | 138 | source: hosted |
| 139 | - version: "1.1.1" | |
| 139 | + version: "1.1.2" | |
| 140 | 140 | build_daemon: |
| 141 | 141 | dependency: transitive |
| 142 | 142 | description: |
| 143 | 143 | name: build_daemon |
| 144 | - sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" | |
| 145 | - url: "https://pub.flutter-io.cn" | |
| 144 | + sha256: "8e928697a82be082206edb0b9c99c5a4ad6bc31c9e9b8b2f291ae65cd4a25daa" | |
| 145 | + url: "https://pub.dev" | |
| 146 | 146 | source: hosted |
| 147 | - version: "4.0.1" | |
| 147 | + version: "4.0.4" | |
| 148 | 148 | build_resolvers: |
| 149 | 149 | dependency: transitive |
| 150 | 150 | description: |
| 151 | 151 | name: build_resolvers |
| 152 | - sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" | |
| 153 | - url: "https://pub.flutter-io.cn" | |
| 152 | + sha256: b9e4fda21d846e192628e7a4f6deda6888c36b5b69ba02ff291a01fd529140f0 | |
| 153 | + url: "https://pub.dev" | |
| 154 | 154 | source: hosted |
| 155 | - version: "2.4.2" | |
| 155 | + version: "2.4.4" | |
| 156 | 156 | build_runner: |
| 157 | 157 | dependency: "direct dev" |
| 158 | 158 | description: |
| 159 | 159 | name: build_runner |
| 160 | - sha256: "3ac61a79bfb6f6cc11f693591063a7f19a7af628dc52f141743edac5c16e8c22" | |
| 161 | - url: "https://pub.flutter-io.cn" | |
| 160 | + sha256: "058fe9dce1de7d69c4b84fada934df3e0153dd000758c4d65964d0166779aa99" | |
| 161 | + url: "https://pub.dev" | |
| 162 | 162 | source: hosted |
| 163 | - version: "2.4.9" | |
| 163 | + version: "2.4.15" | |
| 164 | 164 | build_runner_core: |
| 165 | 165 | dependency: transitive |
| 166 | 166 | description: |
| 167 | 167 | name: build_runner_core |
| 168 | - sha256: "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799" | |
| 169 | - url: "https://pub.flutter-io.cn" | |
| 168 | + sha256: "22e3aa1c80e0ada3722fe5b63fd43d9c8990759d0a2cf489c8c5d7b2bdebc021" | |
| 169 | + url: "https://pub.dev" | |
| 170 | 170 | source: hosted |
| 171 | - version: "7.3.0" | |
| 171 | + version: "8.0.0" | |
| 172 | 172 | built_collection: |
| 173 | 173 | dependency: transitive |
| 174 | 174 | description: |
| 175 | 175 | name: built_collection |
| 176 | 176 | sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" |
| 177 | - url: "https://pub.flutter-io.cn" | |
| 177 | + url: "https://pub.dev" | |
| 178 | 178 | source: hosted |
| 179 | 179 | version: "5.1.1" |
| 180 | 180 | built_value: |
| 181 | 181 | dependency: transitive |
| 182 | 182 | description: |
| 183 | 183 | name: built_value |
| 184 | - sha256: "8b158ab94ec6913e480dc3f752418348b5ae099eb75868b5f4775f0572999c61" | |
| 185 | - url: "https://pub.flutter-io.cn" | |
| 184 | + sha256: f87ea98192116f7093cb214551ce1929caae0681fdba282b3d8b4462adee7bb7 | |
| 185 | + url: "https://pub.dev" | |
| 186 | 186 | source: hosted |
| 187 | - version: "8.9.4" | |
| 187 | + version: "8.13.0" | |
| 188 | 188 | cached_network_image: |
| 189 | 189 | dependency: "direct main" |
| 190 | 190 | description: |
| 191 | 191 | name: cached_network_image |
| 192 | - sha256: "28ea9690a8207179c319965c13cd8df184d5ee721ae2ce60f398ced1219cea1f" | |
| 193 | - url: "https://pub.flutter-io.cn" | |
| 192 | + sha256: "7c1183e361e5c8b0a0f21a28401eecdbde252441106a9816400dd4c2b2424916" | |
| 193 | + url: "https://pub.dev" | |
| 194 | 194 | source: hosted |
| 195 | - version: "3.3.1" | |
| 195 | + version: "3.4.1" | |
| 196 | 196 | cached_network_image_platform_interface: |
| 197 | 197 | dependency: transitive |
| 198 | 198 | description: |
| 199 | 199 | name: cached_network_image_platform_interface |
| 200 | - sha256: "9e90e78ae72caa874a323d78fa6301b3fb8fa7ea76a8f96dc5b5bf79f283bf2f" | |
| 201 | - url: "https://pub.flutter-io.cn" | |
| 200 | + sha256: "35814b016e37fbdc91f7ae18c8caf49ba5c88501813f73ce8a07027a395e2829" | |
| 201 | + url: "https://pub.dev" | |
| 202 | 202 | source: hosted |
| 203 | - version: "4.0.0" | |
| 203 | + version: "4.1.1" | |
| 204 | 204 | cached_network_image_web: |
| 205 | 205 | dependency: transitive |
| 206 | 206 | description: |
| 207 | 207 | name: cached_network_image_web |
| 208 | - sha256: "205d6a9f1862de34b93184f22b9d2d94586b2f05c581d546695e3d8f6a805cd7" | |
| 209 | - url: "https://pub.flutter-io.cn" | |
| 208 | + sha256: "980842f4e8e2535b8dbd3d5ca0b1f0ba66bf61d14cc3a17a9b4788a3685ba062" | |
| 209 | + url: "https://pub.dev" | |
| 210 | 210 | source: hosted |
| 211 | - version: "1.2.0" | |
| 211 | + version: "1.3.1" | |
| 212 | 212 | card_swiper: |
| 213 | 213 | dependency: "direct main" |
| 214 | 214 | description: |
| 215 | 215 | name: card_swiper |
| 216 | 216 | sha256: "0c94c538f47be1dab52d018d4900a7046b4cb0700dc7f95b8628da89d1212b35" |
| 217 | - url: "https://pub.flutter-io.cn" | |
| 217 | + url: "https://pub.dev" | |
| 218 | 218 | source: hosted |
| 219 | 219 | version: "2.0.4" |
| 220 | 220 | characters: |
| ... | ... | @@ -222,7 +222,7 @@ packages: |
| 222 | 222 | description: |
| 223 | 223 | name: characters |
| 224 | 224 | sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" |
| 225 | - url: "https://pub.flutter-io.cn" | |
| 225 | + url: "https://pub.dev" | |
| 226 | 226 | source: hosted |
| 227 | 227 | version: "1.3.0" |
| 228 | 228 | checked_yaml: |
| ... | ... | @@ -230,7 +230,7 @@ packages: |
| 230 | 230 | description: |
| 231 | 231 | name: checked_yaml |
| 232 | 232 | sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff |
| 233 | - url: "https://pub.flutter-io.cn" | |
| 233 | + url: "https://pub.dev" | |
| 234 | 234 | source: hosted |
| 235 | 235 | version: "2.0.3" |
| 236 | 236 | chewie: |
| ... | ... | @@ -238,7 +238,7 @@ packages: |
| 238 | 238 | description: |
| 239 | 239 | name: chewie |
| 240 | 240 | sha256: "8bc4ac4cf3f316e50a25958c0f5eb9bb12cf7e8308bb1d74a43b230da2cfc144" |
| 241 | - url: "https://pub.flutter-io.cn" | |
| 241 | + url: "https://pub.dev" | |
| 242 | 242 | source: hosted |
| 243 | 243 | version: "1.7.5" |
| 244 | 244 | chivox_aiengine: |
| ... | ... | @@ -253,23 +253,23 @@ packages: |
| 253 | 253 | description: |
| 254 | 254 | name: clock |
| 255 | 255 | sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf |
| 256 | - url: "https://pub.flutter-io.cn" | |
| 256 | + url: "https://pub.dev" | |
| 257 | 257 | source: hosted |
| 258 | 258 | version: "1.1.1" |
| 259 | 259 | code_builder: |
| 260 | 260 | dependency: transitive |
| 261 | 261 | description: |
| 262 | 262 | name: code_builder |
| 263 | - sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37 | |
| 264 | - url: "https://pub.flutter-io.cn" | |
| 263 | + sha256: "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e" | |
| 264 | + url: "https://pub.dev" | |
| 265 | 265 | source: hosted |
| 266 | - version: "4.10.0" | |
| 266 | + version: "4.10.1" | |
| 267 | 267 | collection: |
| 268 | 268 | dependency: transitive |
| 269 | 269 | description: |
| 270 | 270 | name: collection |
| 271 | 271 | sha256: a1ace0a119f20aabc852d165077c036cd864315bd99b7eaa10a60100341941bf |
| 272 | - url: "https://pub.flutter-io.cn" | |
| 272 | + url: "https://pub.dev" | |
| 273 | 273 | source: hosted |
| 274 | 274 | version: "1.19.0" |
| 275 | 275 | common_utils: |
| ... | ... | @@ -277,7 +277,7 @@ packages: |
| 277 | 277 | description: |
| 278 | 278 | name: common_utils |
| 279 | 279 | sha256: c26884339b13ff99b0739e56f4b02090c84054ed9dd3a045435cd24e7b99c2c1 |
| 280 | - url: "https://pub.flutter-io.cn" | |
| 280 | + url: "https://pub.dev" | |
| 281 | 281 | source: hosted |
| 282 | 282 | version: "2.1.0" |
| 283 | 283 | connectivity_plus: |
| ... | ... | @@ -285,7 +285,7 @@ packages: |
| 285 | 285 | description: |
| 286 | 286 | name: connectivity_plus |
| 287 | 287 | sha256: "77a180d6938f78ca7d2382d2240eb626c0f6a735d0bfdce227d8ffb80f95c48b" |
| 288 | - url: "https://pub.flutter-io.cn" | |
| 288 | + url: "https://pub.dev" | |
| 289 | 289 | source: hosted |
| 290 | 290 | version: "4.0.2" |
| 291 | 291 | connectivity_plus_platform_interface: |
| ... | ... | @@ -293,39 +293,39 @@ packages: |
| 293 | 293 | description: |
| 294 | 294 | name: connectivity_plus_platform_interface |
| 295 | 295 | sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a |
| 296 | - url: "https://pub.flutter-io.cn" | |
| 296 | + url: "https://pub.dev" | |
| 297 | 297 | source: hosted |
| 298 | 298 | version: "1.2.4" |
| 299 | 299 | convert: |
| 300 | 300 | dependency: transitive |
| 301 | 301 | description: |
| 302 | 302 | name: convert |
| 303 | - sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" | |
| 304 | - url: "https://pub.flutter-io.cn" | |
| 303 | + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 | |
| 304 | + url: "https://pub.dev" | |
| 305 | 305 | source: hosted |
| 306 | - version: "3.1.1" | |
| 306 | + version: "3.1.2" | |
| 307 | 307 | cross_file: |
| 308 | 308 | dependency: transitive |
| 309 | 309 | description: |
| 310 | 310 | name: cross_file |
| 311 | 311 | sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670" |
| 312 | - url: "https://pub.flutter-io.cn" | |
| 312 | + url: "https://pub.dev" | |
| 313 | 313 | source: hosted |
| 314 | 314 | version: "0.3.4+2" |
| 315 | 315 | crypto: |
| 316 | 316 | dependency: transitive |
| 317 | 317 | description: |
| 318 | 318 | name: crypto |
| 319 | - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab | |
| 320 | - url: "https://pub.flutter-io.cn" | |
| 319 | + sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf | |
| 320 | + url: "https://pub.dev" | |
| 321 | 321 | source: hosted |
| 322 | - version: "3.0.3" | |
| 322 | + version: "3.0.7" | |
| 323 | 323 | csslib: |
| 324 | 324 | dependency: transitive |
| 325 | 325 | description: |
| 326 | 326 | name: csslib |
| 327 | 327 | sha256: "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e" |
| 328 | - url: "https://pub.flutter-io.cn" | |
| 328 | + url: "https://pub.dev" | |
| 329 | 329 | source: hosted |
| 330 | 330 | version: "1.0.2" |
| 331 | 331 | cupertino_icons: |
| ... | ... | @@ -333,31 +333,31 @@ packages: |
| 333 | 333 | description: |
| 334 | 334 | name: cupertino_icons |
| 335 | 335 | sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6 |
| 336 | - url: "https://pub.flutter-io.cn" | |
| 336 | + url: "https://pub.dev" | |
| 337 | 337 | source: hosted |
| 338 | 338 | version: "1.0.8" |
| 339 | 339 | dart_style: |
| 340 | 340 | dependency: transitive |
| 341 | 341 | description: |
| 342 | 342 | name: dart_style |
| 343 | - sha256: "99e066ce75c89d6b29903d788a7bb9369cf754f7b24bf70bf4b6d6d6b26853b9" | |
| 344 | - url: "https://pub.flutter-io.cn" | |
| 343 | + sha256: "27eb0ae77836989a3bc541ce55595e8ceee0992807f14511552a898ddd0d88ac" | |
| 344 | + url: "https://pub.dev" | |
| 345 | 345 | source: hosted |
| 346 | - version: "2.3.6" | |
| 346 | + version: "3.0.1" | |
| 347 | 347 | dbus: |
| 348 | 348 | dependency: transitive |
| 349 | 349 | description: |
| 350 | 350 | name: dbus |
| 351 | - sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c" | |
| 352 | - url: "https://pub.flutter-io.cn" | |
| 351 | + sha256: d0c98dcd4f5169878b6cf8f6e0a52403a9dff371a3e2f019697accbf6f44a270 | |
| 352 | + url: "https://pub.dev" | |
| 353 | 353 | source: hosted |
| 354 | - version: "0.7.11" | |
| 354 | + version: "0.7.12" | |
| 355 | 355 | decimal: |
| 356 | 356 | dependency: "direct main" |
| 357 | 357 | description: |
| 358 | 358 | name: decimal |
| 359 | 359 | sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21" |
| 360 | - url: "https://pub.flutter-io.cn" | |
| 360 | + url: "https://pub.dev" | |
| 361 | 361 | source: hosted |
| 362 | 362 | version: "2.3.3" |
| 363 | 363 | device_info_plus: |
| ... | ... | @@ -365,7 +365,7 @@ packages: |
| 365 | 365 | description: |
| 366 | 366 | name: device_info_plus |
| 367 | 367 | sha256: "77f757b789ff68e4eaf9c56d1752309bd9f7ad557cb105b938a7f8eb89e59110" |
| 368 | - url: "https://pub.flutter-io.cn" | |
| 368 | + url: "https://pub.dev" | |
| 369 | 369 | source: hosted |
| 370 | 370 | version: "9.1.2" |
| 371 | 371 | device_info_plus_platform_interface: |
| ... | ... | @@ -373,39 +373,39 @@ packages: |
| 373 | 373 | description: |
| 374 | 374 | name: device_info_plus_platform_interface |
| 375 | 375 | sha256: "0b04e02b30791224b31969eb1b50d723498f402971bff3630bca2ba839bd1ed2" |
| 376 | - url: "https://pub.flutter-io.cn" | |
| 376 | + url: "https://pub.dev" | |
| 377 | 377 | source: hosted |
| 378 | 378 | version: "7.0.2" |
| 379 | 379 | dio: |
| 380 | 380 | dependency: "direct main" |
| 381 | 381 | description: |
| 382 | 382 | name: dio |
| 383 | - sha256: "253a18bbd4851fecba42f7343a1df3a9a4c1d31a2c1b37e221086b4fa8c8dbc9" | |
| 384 | - url: "https://pub.flutter-io.cn" | |
| 383 | + sha256: "852ec3b48cc431ac04fff978413c541502b67ffc3e26921e74e3d994694192c1" | |
| 384 | + url: "https://pub.dev" | |
| 385 | 385 | source: hosted |
| 386 | - version: "5.8.0+1" | |
| 386 | + version: "5.11.1" | |
| 387 | 387 | dio_web_adapter: |
| 388 | 388 | dependency: transitive |
| 389 | 389 | description: |
| 390 | 390 | name: dio_web_adapter |
| 391 | - sha256: "7586e476d70caecaf1686d21eee7247ea43ef5c345eab9e0cc3583ff13378d78" | |
| 392 | - url: "https://pub.flutter-io.cn" | |
| 391 | + sha256: "3a1b2cd7be71086f38504956e3ebcd2837288d231ff454bafa78021244102bfc" | |
| 392 | + url: "https://pub.dev" | |
| 393 | 393 | source: hosted |
| 394 | - version: "2.1.1" | |
| 394 | + version: "2.2.2" | |
| 395 | 395 | equatable: |
| 396 | 396 | dependency: "direct main" |
| 397 | 397 | description: |
| 398 | 398 | name: equatable |
| 399 | - sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7" | |
| 400 | - url: "https://pub.flutter-io.cn" | |
| 399 | + sha256: "3bce007a596ff8b3119c45d68aaef631272537c03d30e5d4534dd24bf4c5eaa2" | |
| 400 | + url: "https://pub.dev" | |
| 401 | 401 | source: hosted |
| 402 | - version: "2.0.7" | |
| 402 | + version: "2.1.0" | |
| 403 | 403 | extended_text: |
| 404 | 404 | dependency: "direct main" |
| 405 | 405 | description: |
| 406 | 406 | name: extended_text |
| 407 | 407 | sha256: "32119a9447888fe97f506df6c87e23744ea2dbdf25a75fd713030cc7bc055c3a" |
| 408 | - url: "https://pub.flutter-io.cn" | |
| 408 | + url: "https://pub.dev" | |
| 409 | 409 | source: hosted |
| 410 | 410 | version: "11.2.0" |
| 411 | 411 | extended_text_library: |
| ... | ... | @@ -413,7 +413,7 @@ packages: |
| 413 | 413 | description: |
| 414 | 414 | name: extended_text_library |
| 415 | 415 | sha256: f6ae456324ff6ba3f9fe560a5c12f51ec02c5f463ef5a02bf165b678f049d547 |
| 416 | - url: "https://pub.flutter-io.cn" | |
| 416 | + url: "https://pub.dev" | |
| 417 | 417 | source: hosted |
| 418 | 418 | version: "11.1.0" |
| 419 | 419 | fake_async: |
| ... | ... | @@ -421,7 +421,7 @@ packages: |
| 421 | 421 | description: |
| 422 | 422 | name: fake_async |
| 423 | 423 | sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" |
| 424 | - url: "https://pub.flutter-io.cn" | |
| 424 | + url: "https://pub.dev" | |
| 425 | 425 | source: hosted |
| 426 | 426 | version: "1.3.1" |
| 427 | 427 | ffi: |
| ... | ... | @@ -429,55 +429,55 @@ packages: |
| 429 | 429 | description: |
| 430 | 430 | name: ffi |
| 431 | 431 | sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6" |
| 432 | - url: "https://pub.flutter-io.cn" | |
| 432 | + url: "https://pub.dev" | |
| 433 | 433 | source: hosted |
| 434 | 434 | version: "2.1.3" |
| 435 | 435 | file: |
| 436 | 436 | dependency: transitive |
| 437 | 437 | description: |
| 438 | 438 | name: file |
| 439 | - sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" | |
| 440 | - url: "https://pub.flutter-io.cn" | |
| 439 | + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 | |
| 440 | + url: "https://pub.dev" | |
| 441 | 441 | source: hosted |
| 442 | - version: "6.1.4" | |
| 442 | + version: "7.0.1" | |
| 443 | 443 | file_selector_linux: |
| 444 | 444 | dependency: transitive |
| 445 | 445 | description: |
| 446 | 446 | name: file_selector_linux |
| 447 | 447 | sha256: "54cbbd957e1156d29548c7d9b9ec0c0ebb6de0a90452198683a7d23aed617a33" |
| 448 | - url: "https://pub.flutter-io.cn" | |
| 448 | + url: "https://pub.dev" | |
| 449 | 449 | source: hosted |
| 450 | 450 | version: "0.9.3+2" |
| 451 | 451 | file_selector_macos: |
| 452 | 452 | dependency: transitive |
| 453 | 453 | description: |
| 454 | 454 | name: file_selector_macos |
| 455 | - sha256: "271ab9986df0c135d45c3cdb6bd0faa5db6f4976d3e4b437cf7d0f258d941bfc" | |
| 456 | - url: "https://pub.flutter-io.cn" | |
| 455 | + sha256: "8c9250b2bd2d8d4268e39c82543bacbaca0fda7d29e0728c3c4bbb7c820fd711" | |
| 456 | + url: "https://pub.dev" | |
| 457 | 457 | source: hosted |
| 458 | - version: "0.9.4+2" | |
| 458 | + version: "0.9.4+3" | |
| 459 | 459 | file_selector_platform_interface: |
| 460 | 460 | dependency: transitive |
| 461 | 461 | description: |
| 462 | 462 | name: file_selector_platform_interface |
| 463 | 463 | sha256: a3994c26f10378a039faa11de174d7b78eb8f79e4dd0af2a451410c1a5c3f66b |
| 464 | - url: "https://pub.flutter-io.cn" | |
| 464 | + url: "https://pub.dev" | |
| 465 | 465 | source: hosted |
| 466 | 466 | version: "2.6.2" |
| 467 | 467 | file_selector_windows: |
| 468 | 468 | dependency: transitive |
| 469 | 469 | description: |
| 470 | 470 | name: file_selector_windows |
| 471 | - sha256: "8f5d2f6590d51ecd9179ba39c64f722edc15226cc93dcc8698466ad36a4a85a4" | |
| 472 | - url: "https://pub.flutter-io.cn" | |
| 471 | + sha256: "320fcfb6f33caa90f0b58380489fc5ac05d99ee94b61aa96ec2bff0ba81d3c2b" | |
| 472 | + url: "https://pub.dev" | |
| 473 | 473 | source: hosted |
| 474 | - version: "0.9.3+3" | |
| 474 | + version: "0.9.3+4" | |
| 475 | 475 | fixnum: |
| 476 | 476 | dependency: transitive |
| 477 | 477 | description: |
| 478 | 478 | name: fixnum |
| 479 | 479 | sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be |
| 480 | - url: "https://pub.flutter-io.cn" | |
| 480 | + url: "https://pub.dev" | |
| 481 | 481 | source: hosted |
| 482 | 482 | version: "1.1.1" |
| 483 | 483 | flutter: |
| ... | ... | @@ -489,32 +489,32 @@ packages: |
| 489 | 489 | dependency: "direct main" |
| 490 | 490 | description: |
| 491 | 491 | name: flutter_app_update |
| 492 | - sha256: "09290240949c4651581cd6fc535e52d019e189e694d6019c56b5a56c2e69ba65" | |
| 493 | - url: "https://pub.flutter-io.cn" | |
| 492 | + sha256: "336a87c9b8f5c2f040ac314939f61a567e812a3ec3c066d8c99a524d95171d81" | |
| 493 | + url: "https://pub.dev" | |
| 494 | 494 | source: hosted |
| 495 | - version: "3.2.2" | |
| 495 | + version: "3.2.4" | |
| 496 | 496 | flutter_bloc: |
| 497 | 497 | dependency: "direct main" |
| 498 | 498 | description: |
| 499 | 499 | name: flutter_bloc |
| 500 | 500 | sha256: b594505eac31a0518bdcb4b5b79573b8d9117b193cc80cc12e17d639b10aa27a |
| 501 | - url: "https://pub.flutter-io.cn" | |
| 501 | + url: "https://pub.dev" | |
| 502 | 502 | source: hosted |
| 503 | 503 | version: "8.1.6" |
| 504 | 504 | flutter_cache_manager: |
| 505 | 505 | dependency: transitive |
| 506 | 506 | description: |
| 507 | 507 | name: flutter_cache_manager |
| 508 | - sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba" | |
| 509 | - url: "https://pub.flutter-io.cn" | |
| 508 | + sha256: "400b6592f16a4409a7f2bb929a9a7e38c72cceb8ffb99ee57bbf2cb2cecf8386" | |
| 509 | + url: "https://pub.dev" | |
| 510 | 510 | source: hosted |
| 511 | - version: "3.3.1" | |
| 511 | + version: "3.4.1" | |
| 512 | 512 | flutter_easyloading: |
| 513 | 513 | dependency: "direct main" |
| 514 | 514 | description: |
| 515 | 515 | name: flutter_easyloading |
| 516 | 516 | sha256: ba21a3c883544e582f9cc455a4a0907556714e1e9cf0eababfcb600da191d17c |
| 517 | - url: "https://pub.flutter-io.cn" | |
| 517 | + url: "https://pub.dev" | |
| 518 | 518 | source: hosted |
| 519 | 519 | version: "3.0.5" |
| 520 | 520 | flutter_inappwebview: |
| ... | ... | @@ -522,63 +522,63 @@ packages: |
| 522 | 522 | description: |
| 523 | 523 | name: flutter_inappwebview |
| 524 | 524 | sha256: "3e9a443a18ecef966fb930c3a76ca5ab6a7aafc0c7b5e14a4a850cf107b09959" |
| 525 | - url: "https://pub.flutter-io.cn" | |
| 525 | + url: "https://pub.dev" | |
| 526 | 526 | source: hosted |
| 527 | 527 | version: "6.0.0" |
| 528 | 528 | flutter_inappwebview_android: |
| 529 | 529 | dependency: transitive |
| 530 | 530 | description: |
| 531 | 531 | name: flutter_inappwebview_android |
| 532 | - sha256: d247f6ed417f1f8c364612fa05a2ecba7f775c8d0c044c1d3b9ee33a6515c421 | |
| 533 | - url: "https://pub.flutter-io.cn" | |
| 532 | + sha256: "62557c15a5c2db5d195cb3892aab74fcaec266d7b86d59a6f0027abd672cddba" | |
| 533 | + url: "https://pub.dev" | |
| 534 | 534 | source: hosted |
| 535 | - version: "1.0.13" | |
| 535 | + version: "1.1.3" | |
| 536 | 536 | flutter_inappwebview_internal_annotations: |
| 537 | 537 | dependency: transitive |
| 538 | 538 | description: |
| 539 | 539 | name: flutter_inappwebview_internal_annotations |
| 540 | 540 | sha256: "787171d43f8af67864740b6f04166c13190aa74a1468a1f1f1e9ee5b90c359cd" |
| 541 | - url: "https://pub.flutter-io.cn" | |
| 541 | + url: "https://pub.dev" | |
| 542 | 542 | source: hosted |
| 543 | 543 | version: "1.2.0" |
| 544 | 544 | flutter_inappwebview_ios: |
| 545 | 545 | dependency: transitive |
| 546 | 546 | description: |
| 547 | 547 | name: flutter_inappwebview_ios |
| 548 | - sha256: f363577208b97b10b319cd0c428555cd8493e88b468019a8c5635a0e4312bd0f | |
| 549 | - url: "https://pub.flutter-io.cn" | |
| 548 | + sha256: "5818cf9b26cf0cbb0f62ff50772217d41ea8d3d9cc00279c45f8aabaa1b4025d" | |
| 549 | + url: "https://pub.dev" | |
| 550 | 550 | source: hosted |
| 551 | - version: "1.0.13" | |
| 551 | + version: "1.1.2" | |
| 552 | 552 | flutter_inappwebview_macos: |
| 553 | 553 | dependency: transitive |
| 554 | 554 | description: |
| 555 | 555 | name: flutter_inappwebview_macos |
| 556 | - sha256: b55b9e506c549ce88e26580351d2c71d54f4825901666bd6cfa4be9415bb2636 | |
| 557 | - url: "https://pub.flutter-io.cn" | |
| 556 | + sha256: c1fbb86af1a3738e3541364d7d1866315ffb0468a1a77e34198c9be571287da1 | |
| 557 | + url: "https://pub.dev" | |
| 558 | 558 | source: hosted |
| 559 | - version: "1.0.11" | |
| 559 | + version: "1.1.2" | |
| 560 | 560 | flutter_inappwebview_platform_interface: |
| 561 | 561 | dependency: transitive |
| 562 | 562 | description: |
| 563 | 563 | name: flutter_inappwebview_platform_interface |
| 564 | - sha256: "545fd4c25a07d2775f7d5af05a979b2cac4fbf79393b0a7f5d33ba39ba4f6187" | |
| 565 | - url: "https://pub.flutter-io.cn" | |
| 564 | + sha256: cf5323e194096b6ede7a1ca808c3e0a078e4b33cc3f6338977d75b4024ba2500 | |
| 565 | + url: "https://pub.dev" | |
| 566 | 566 | source: hosted |
| 567 | - version: "1.0.10" | |
| 567 | + version: "1.3.0+1" | |
| 568 | 568 | flutter_inappwebview_web: |
| 569 | 569 | dependency: transitive |
| 570 | 570 | description: |
| 571 | 571 | name: flutter_inappwebview_web |
| 572 | - sha256: d8c680abfb6fec71609a700199635d38a744df0febd5544c5a020bd73de8ee07 | |
| 573 | - url: "https://pub.flutter-io.cn" | |
| 572 | + sha256: "55f89c83b0a0d3b7893306b3bb545ba4770a4df018204917148ebb42dc14a598" | |
| 573 | + url: "https://pub.dev" | |
| 574 | 574 | source: hosted |
| 575 | - version: "1.0.8" | |
| 575 | + version: "1.1.2" | |
| 576 | 576 | flutter_lints: |
| 577 | 577 | dependency: "direct dev" |
| 578 | 578 | description: |
| 579 | 579 | name: flutter_lints |
| 580 | 580 | sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 |
| 581 | - url: "https://pub.flutter-io.cn" | |
| 581 | + url: "https://pub.dev" | |
| 582 | 582 | source: hosted |
| 583 | 583 | version: "2.0.3" |
| 584 | 584 | flutter_oss_aliyun: |
| ... | ... | @@ -586,57 +586,57 @@ packages: |
| 586 | 586 | description: |
| 587 | 587 | name: flutter_oss_aliyun |
| 588 | 588 | sha256: "8280c1e8dfb792dec6449d1e6052e1d3492b3b3a1dfee456cc41d3f31b4cbc26" |
| 589 | - url: "https://pub.flutter-io.cn" | |
| 589 | + url: "https://pub.dev" | |
| 590 | 590 | source: hosted |
| 591 | 591 | version: "6.4.2" |
| 592 | 592 | flutter_plugin_android_lifecycle: |
| 593 | 593 | dependency: transitive |
| 594 | 594 | description: |
| 595 | 595 | name: flutter_plugin_android_lifecycle |
| 596 | - sha256: "8cf40eebf5dec866a6d1956ad7b4f7016e6c0cc69847ab946833b7d43743809f" | |
| 597 | - url: "https://pub.flutter-io.cn" | |
| 596 | + sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab" | |
| 597 | + url: "https://pub.dev" | |
| 598 | 598 | source: hosted |
| 599 | - version: "2.0.19" | |
| 599 | + version: "2.0.29" | |
| 600 | 600 | flutter_screenutil: |
| 601 | 601 | dependency: "direct main" |
| 602 | 602 | description: |
| 603 | 603 | name: flutter_screenutil |
| 604 | 604 | sha256: "8239210dd68bee6b0577aa4a090890342d04a136ce1c81f98ee513fc0ce891de" |
| 605 | - url: "https://pub.flutter-io.cn" | |
| 605 | + url: "https://pub.dev" | |
| 606 | 606 | source: hosted |
| 607 | 607 | version: "5.9.3" |
| 608 | 608 | flutter_sound: |
| 609 | 609 | dependency: "direct main" |
| 610 | 610 | description: |
| 611 | 611 | name: flutter_sound |
| 612 | - sha256: "1f40b26b92907a433afe877c927cd48f5a2e4d0f7188e5d39eb5756008aa51ab" | |
| 613 | - url: "https://pub.flutter-io.cn" | |
| 612 | + sha256: ef89477f6e8ce2fa395158ebc4a8b11982e3ada440b4021c06fd97a4e771554b | |
| 613 | + url: "https://pub.dev" | |
| 614 | 614 | source: hosted |
| 615 | - version: "9.6.0" | |
| 615 | + version: "9.28.0" | |
| 616 | 616 | flutter_sound_platform_interface: |
| 617 | 617 | dependency: transitive |
| 618 | 618 | description: |
| 619 | 619 | name: flutter_sound_platform_interface |
| 620 | - sha256: "2e218521d8187b9a4c65063ad9c79bfe88119531ff68047a2eaa6b027cb276bb" | |
| 621 | - url: "https://pub.flutter-io.cn" | |
| 620 | + sha256: "3394d7e664a09796818014ff85a81db0dec397f4c286cbe52f8783886fa5a497" | |
| 621 | + url: "https://pub.dev" | |
| 622 | 622 | source: hosted |
| 623 | - version: "9.6.0" | |
| 623 | + version: "9.28.0" | |
| 624 | 624 | flutter_sound_web: |
| 625 | 625 | dependency: transitive |
| 626 | 626 | description: |
| 627 | 627 | name: flutter_sound_web |
| 628 | - sha256: "5013a15e4e69a4bdc8badd729130eef43c3305e30ba8e6933f863436ce969932" | |
| 629 | - url: "https://pub.flutter-io.cn" | |
| 628 | + sha256: "4e10c94a8574bd93bb8668af59bf76f5312a890bccd3778d73168a7133217dc5" | |
| 629 | + url: "https://pub.dev" | |
| 630 | 630 | source: hosted |
| 631 | - version: "9.6.0" | |
| 631 | + version: "9.28.0" | |
| 632 | 632 | flutter_spinkit: |
| 633 | 633 | dependency: transitive |
| 634 | 634 | description: |
| 635 | 635 | name: flutter_spinkit |
| 636 | - sha256: d2696eed13732831414595b98863260e33e8882fc069ee80ec35d4ac9ddb0472 | |
| 637 | - url: "https://pub.flutter-io.cn" | |
| 636 | + sha256: "77850df57c00dc218bfe96071d576a8babec24cf58b2ed121c83cca4a2fdce7f" | |
| 637 | + url: "https://pub.dev" | |
| 638 | 638 | source: hosted |
| 639 | - version: "5.2.1" | |
| 639 | + version: "5.2.2" | |
| 640 | 640 | flutter_test: |
| 641 | 641 | dependency: "direct dev" |
| 642 | 642 | description: flutter |
| ... | ... | @@ -651,16 +651,16 @@ packages: |
| 651 | 651 | dependency: "direct main" |
| 652 | 652 | description: |
| 653 | 653 | name: fluttertoast |
| 654 | - sha256: "95f349437aeebe524ef7d6c9bde3e6b4772717cf46a0eb6a3ceaddc740b297cc" | |
| 655 | - url: "https://pub.flutter-io.cn" | |
| 654 | + sha256: "90778fe0497fe3a09166e8cf2e0867310ff434b794526589e77ec03cf08ba8e8" | |
| 655 | + url: "https://pub.dev" | |
| 656 | 656 | source: hosted |
| 657 | - version: "8.2.8" | |
| 657 | + version: "8.2.14" | |
| 658 | 658 | fluwx: |
| 659 | 659 | dependency: "direct main" |
| 660 | 660 | description: |
| 661 | 661 | name: fluwx |
| 662 | 662 | sha256: d25c26a12a1fa280833105869ea255a5877695e03dc1190f0d2c027a7c989ef3 |
| 663 | - url: "https://pub.flutter-io.cn" | |
| 663 | + url: "https://pub.dev" | |
| 664 | 664 | source: hosted |
| 665 | 665 | version: "4.6.3" |
| 666 | 666 | frontend_server_client: |
| ... | ... | @@ -668,47 +668,47 @@ packages: |
| 668 | 668 | description: |
| 669 | 669 | name: frontend_server_client |
| 670 | 670 | sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694 |
| 671 | - url: "https://pub.flutter-io.cn" | |
| 671 | + url: "https://pub.dev" | |
| 672 | 672 | source: hosted |
| 673 | 673 | version: "4.0.0" |
| 674 | 674 | glob: |
| 675 | 675 | dependency: transitive |
| 676 | 676 | description: |
| 677 | 677 | name: glob |
| 678 | - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de | |
| 679 | - url: "https://pub.flutter-io.cn" | |
| 678 | + sha256: "218aeb56050c714f62a3182775320dfa04602b55074873e24e31bbd39bda96fb" | |
| 679 | + url: "https://pub.dev" | |
| 680 | 680 | source: hosted |
| 681 | - version: "2.1.3" | |
| 681 | + version: "2.2.0" | |
| 682 | 682 | google_fonts: |
| 683 | 683 | dependency: "direct main" |
| 684 | 684 | description: |
| 685 | 685 | name: google_fonts |
| 686 | 686 | sha256: "2776c66b3e97c6cdd58d1bd3281548b074b64f1fd5c8f82391f7456e38849567" |
| 687 | - url: "https://pub.flutter-io.cn" | |
| 687 | + url: "https://pub.dev" | |
| 688 | 688 | source: hosted |
| 689 | 689 | version: "4.0.5" |
| 690 | 690 | graphs: |
| 691 | 691 | dependency: transitive |
| 692 | 692 | description: |
| 693 | 693 | name: graphs |
| 694 | - sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 | |
| 695 | - url: "https://pub.flutter-io.cn" | |
| 694 | + sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0" | |
| 695 | + url: "https://pub.dev" | |
| 696 | 696 | source: hosted |
| 697 | - version: "2.3.1" | |
| 697 | + version: "2.3.2" | |
| 698 | 698 | html: |
| 699 | 699 | dependency: transitive |
| 700 | 700 | description: |
| 701 | 701 | name: html |
| 702 | - sha256: "1fc58edeaec4307368c60d59b7e15b9d658b57d7f3125098b6294153c75337ec" | |
| 703 | - url: "https://pub.flutter-io.cn" | |
| 702 | + sha256: "43b67b8f43321ab066817dfac5619596c98bb1b61624e77203bb4351785f9699" | |
| 703 | + url: "https://pub.dev" | |
| 704 | 704 | source: hosted |
| 705 | - version: "0.15.5" | |
| 705 | + version: "0.15.7" | |
| 706 | 706 | http: |
| 707 | 707 | dependency: "direct overridden" |
| 708 | 708 | description: |
| 709 | 709 | name: http |
| 710 | 710 | sha256: "5895291c13fa8a3bd82e76d5627f69e0d85ca6a30dcac95c4ea19a5d555879c2" |
| 711 | - url: "https://pub.flutter-io.cn" | |
| 711 | + url: "https://pub.dev" | |
| 712 | 712 | source: hosted |
| 713 | 713 | version: "0.13.6" |
| 714 | 714 | http_multi_server: |
| ... | ... | @@ -716,111 +716,111 @@ packages: |
| 716 | 716 | description: |
| 717 | 717 | name: http_multi_server |
| 718 | 718 | sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8 |
| 719 | - url: "https://pub.flutter-io.cn" | |
| 719 | + url: "https://pub.dev" | |
| 720 | 720 | source: hosted |
| 721 | 721 | version: "3.2.2" |
| 722 | 722 | http_parser: |
| 723 | 723 | dependency: transitive |
| 724 | 724 | description: |
| 725 | 725 | name: http_parser |
| 726 | - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" | |
| 727 | - url: "https://pub.flutter-io.cn" | |
| 726 | + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" | |
| 727 | + url: "https://pub.dev" | |
| 728 | 728 | source: hosted |
| 729 | - version: "4.0.2" | |
| 729 | + version: "4.1.2" | |
| 730 | 730 | image: |
| 731 | 731 | dependency: "direct main" |
| 732 | 732 | description: |
| 733 | 733 | name: image |
| 734 | - sha256: f31d52537dc417fdcde36088fdf11d191026fd5e4fae742491ebd40e5a8bea7d | |
| 735 | - url: "https://pub.flutter-io.cn" | |
| 734 | + sha256: "1976370a4df3091bb0f72409c187ad1f9132a818bc6b95ca59c0bae1c75c688e" | |
| 735 | + url: "https://pub.dev" | |
| 736 | 736 | source: hosted |
| 737 | - version: "4.3.0" | |
| 737 | + version: "4.9.2" | |
| 738 | 738 | image_picker: |
| 739 | 739 | dependency: "direct main" |
| 740 | 740 | description: |
| 741 | 741 | name: image_picker |
| 742 | 742 | sha256: b6951e25b795d053a6ba03af5f710069c99349de9341af95155d52665cb4607c |
| 743 | - url: "https://pub.flutter-io.cn" | |
| 743 | + url: "https://pub.dev" | |
| 744 | 744 | source: hosted |
| 745 | 745 | version: "0.8.9" |
| 746 | 746 | image_picker_android: |
| 747 | 747 | dependency: transitive |
| 748 | 748 | description: |
| 749 | 749 | name: image_picker_android |
| 750 | - sha256: "0f57fee1e8bfadf8cc41818bbcd7f72e53bb768a54d9496355d5e8a5681a19f1" | |
| 751 | - url: "https://pub.flutter-io.cn" | |
| 750 | + sha256: e83b2b05141469c5e19d77e1dfa11096b6b1567d09065b2265d7c6904560050c | |
| 751 | + url: "https://pub.dev" | |
| 752 | 752 | source: hosted |
| 753 | - version: "0.8.12+1" | |
| 753 | + version: "0.8.13" | |
| 754 | 754 | image_picker_for_web: |
| 755 | 755 | dependency: transitive |
| 756 | 756 | description: |
| 757 | 757 | name: image_picker_for_web |
| 758 | 758 | sha256: "869fe8a64771b7afbc99fc433a5f7be2fea4d1cb3d7c11a48b6b579eb9c797f0" |
| 759 | - url: "https://pub.flutter-io.cn" | |
| 759 | + url: "https://pub.dev" | |
| 760 | 760 | source: hosted |
| 761 | 761 | version: "2.2.0" |
| 762 | 762 | image_picker_ios: |
| 763 | 763 | dependency: transitive |
| 764 | 764 | description: |
| 765 | 765 | name: image_picker_ios |
| 766 | - sha256: "4f0568120c6fcc0aaa04511cb9f9f4d29fc3d0139884b1d06be88dcec7641d6b" | |
| 767 | - url: "https://pub.flutter-io.cn" | |
| 766 | + sha256: eb06fe30bab4c4497bad449b66448f50edcc695f1c59408e78aa3a8059eb8f0e | |
| 767 | + url: "https://pub.dev" | |
| 768 | 768 | source: hosted |
| 769 | - version: "0.8.12+1" | |
| 769 | + version: "0.8.13" | |
| 770 | 770 | image_picker_linux: |
| 771 | 771 | dependency: transitive |
| 772 | 772 | description: |
| 773 | 773 | name: image_picker_linux |
| 774 | - sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" | |
| 775 | - url: "https://pub.flutter-io.cn" | |
| 774 | + sha256: "1f81c5f2046b9ab724f85523e4af65be1d47b038160a8c8deed909762c308ed4" | |
| 775 | + url: "https://pub.dev" | |
| 776 | 776 | source: hosted |
| 777 | - version: "0.2.1+1" | |
| 777 | + version: "0.2.2" | |
| 778 | 778 | image_picker_macos: |
| 779 | 779 | dependency: transitive |
| 780 | 780 | description: |
| 781 | 781 | name: image_picker_macos |
| 782 | - sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" | |
| 783 | - url: "https://pub.flutter-io.cn" | |
| 782 | + sha256: d58cd9d67793d52beefd6585b12050af0a7663c0c2a6ece0fb110a35d6955e04 | |
| 783 | + url: "https://pub.dev" | |
| 784 | 784 | source: hosted |
| 785 | - version: "0.2.1+1" | |
| 785 | + version: "0.2.2" | |
| 786 | 786 | image_picker_platform_interface: |
| 787 | 787 | dependency: transitive |
| 788 | 788 | description: |
| 789 | 789 | name: image_picker_platform_interface |
| 790 | - sha256: "9ec26d410ff46f483c5519c29c02ef0e02e13a543f882b152d4bfd2f06802f80" | |
| 791 | - url: "https://pub.flutter-io.cn" | |
| 790 | + sha256: "9f143b0dba3e459553209e20cc425c9801af48e6dfa4f01a0fcf927be3f41665" | |
| 791 | + url: "https://pub.dev" | |
| 792 | 792 | source: hosted |
| 793 | - version: "2.10.0" | |
| 793 | + version: "2.11.0" | |
| 794 | 794 | image_picker_windows: |
| 795 | 795 | dependency: transitive |
| 796 | 796 | description: |
| 797 | 797 | name: image_picker_windows |
| 798 | - sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" | |
| 799 | - url: "https://pub.flutter-io.cn" | |
| 798 | + sha256: d248c86554a72b5495a31c56f060cf73a41c7ff541689327b1a7dbccc33adfae | |
| 799 | + url: "https://pub.dev" | |
| 800 | 800 | source: hosted |
| 801 | - version: "0.2.1+1" | |
| 801 | + version: "0.2.2" | |
| 802 | 802 | intl: |
| 803 | 803 | dependency: "direct main" |
| 804 | 804 | description: |
| 805 | 805 | name: intl |
| 806 | 806 | sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf |
| 807 | - url: "https://pub.flutter-io.cn" | |
| 807 | + url: "https://pub.dev" | |
| 808 | 808 | source: hosted |
| 809 | 809 | version: "0.19.0" |
| 810 | 810 | io: |
| 811 | 811 | dependency: transitive |
| 812 | 812 | description: |
| 813 | 813 | name: io |
| 814 | - sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" | |
| 815 | - url: "https://pub.flutter-io.cn" | |
| 814 | + sha256: "2635216ca6a737e60de577ffa1a48a0bec76ca8a62917cfc1bb88c14c570646f" | |
| 815 | + url: "https://pub.dev" | |
| 816 | 816 | source: hosted |
| 817 | - version: "1.0.4" | |
| 817 | + version: "1.1.0" | |
| 818 | 818 | js: |
| 819 | 819 | dependency: transitive |
| 820 | 820 | description: |
| 821 | 821 | name: js |
| 822 | 822 | sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 |
| 823 | - url: "https://pub.flutter-io.cn" | |
| 823 | + url: "https://pub.dev" | |
| 824 | 824 | source: hosted |
| 825 | 825 | version: "0.6.7" |
| 826 | 826 | json_annotation: |
| ... | ... | @@ -828,23 +828,23 @@ packages: |
| 828 | 828 | description: |
| 829 | 829 | name: json_annotation |
| 830 | 830 | sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1" |
| 831 | - url: "https://pub.flutter-io.cn" | |
| 831 | + url: "https://pub.dev" | |
| 832 | 832 | source: hosted |
| 833 | 833 | version: "4.9.0" |
| 834 | 834 | json_serializable: |
| 835 | 835 | dependency: "direct dev" |
| 836 | 836 | description: |
| 837 | 837 | name: json_serializable |
| 838 | - sha256: ea1432d167339ea9b5bb153f0571d0039607a873d6e04e0117af043f14a1fd4b | |
| 839 | - url: "https://pub.flutter-io.cn" | |
| 838 | + sha256: c50ef5fc083d5b5e12eef489503ba3bf5ccc899e487d691584699b4bdefeea8c | |
| 839 | + url: "https://pub.dev" | |
| 840 | 840 | source: hosted |
| 841 | - version: "6.8.0" | |
| 841 | + version: "6.9.5" | |
| 842 | 842 | leak_tracker: |
| 843 | 843 | dependency: transitive |
| 844 | 844 | description: |
| 845 | 845 | name: leak_tracker |
| 846 | 846 | sha256: "7bb2830ebd849694d1ec25bf1f44582d6ac531a57a365a803a6034ff751d2d06" |
| 847 | - url: "https://pub.flutter-io.cn" | |
| 847 | + url: "https://pub.dev" | |
| 848 | 848 | source: hosted |
| 849 | 849 | version: "10.0.7" |
| 850 | 850 | leak_tracker_flutter_testing: |
| ... | ... | @@ -852,7 +852,7 @@ packages: |
| 852 | 852 | description: |
| 853 | 853 | name: leak_tracker_flutter_testing |
| 854 | 854 | sha256: "9491a714cca3667b60b5c420da8217e6de0d1ba7a5ec322fab01758f6998f379" |
| 855 | - url: "https://pub.flutter-io.cn" | |
| 855 | + url: "https://pub.dev" | |
| 856 | 856 | source: hosted |
| 857 | 857 | version: "3.0.8" |
| 858 | 858 | leak_tracker_testing: |
| ... | ... | @@ -860,55 +860,55 @@ packages: |
| 860 | 860 | description: |
| 861 | 861 | name: leak_tracker_testing |
| 862 | 862 | sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" |
| 863 | - url: "https://pub.flutter-io.cn" | |
| 863 | + url: "https://pub.dev" | |
| 864 | 864 | source: hosted |
| 865 | 865 | version: "3.0.1" |
| 866 | 866 | limiting_direction_csx: |
| 867 | 867 | dependency: "direct main" |
| 868 | 868 | description: |
| 869 | 869 | name: limiting_direction_csx |
| 870 | - sha256: c606c629d5e2905d4df6835be100885f4049e05c2dbc74337a69ae65ce6eaed1 | |
| 871 | - url: "https://pub.flutter-io.cn" | |
| 870 | + sha256: "283a846809a076ad641924ba830e3e39ff5385b9fb9bab7ecd322200948a89bd" | |
| 871 | + url: "https://pub.dev" | |
| 872 | 872 | source: hosted |
| 873 | - version: "0.2.0" | |
| 873 | + version: "0.2.0+5" | |
| 874 | 874 | lints: |
| 875 | 875 | dependency: transitive |
| 876 | 876 | description: |
| 877 | 877 | name: lints |
| 878 | 878 | sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" |
| 879 | - url: "https://pub.flutter-io.cn" | |
| 879 | + url: "https://pub.dev" | |
| 880 | 880 | source: hosted |
| 881 | 881 | version: "2.1.1" |
| 882 | 882 | logger: |
| 883 | 883 | dependency: transitive |
| 884 | 884 | description: |
| 885 | 885 | name: logger |
| 886 | - sha256: be4b23575aac7ebf01f225a241eb7f6b5641eeaf43c6a8613510fc2f8cf187d1 | |
| 887 | - url: "https://pub.flutter-io.cn" | |
| 886 | + sha256: "2a0dc097e7b01d942475bdd552356db2d0f768b05540bd4b2b53f1840f2239a7" | |
| 887 | + url: "https://pub.dev" | |
| 888 | 888 | source: hosted |
| 889 | - version: "2.5.0" | |
| 889 | + version: "2.8.0" | |
| 890 | 890 | logging: |
| 891 | 891 | dependency: transitive |
| 892 | 892 | description: |
| 893 | 893 | name: logging |
| 894 | - sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" | |
| 895 | - url: "https://pub.flutter-io.cn" | |
| 894 | + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 | |
| 895 | + url: "https://pub.dev" | |
| 896 | 896 | source: hosted |
| 897 | - version: "1.2.0" | |
| 897 | + version: "1.3.0" | |
| 898 | 898 | lottie: |
| 899 | 899 | dependency: "direct main" |
| 900 | 900 | description: |
| 901 | 901 | name: lottie |
| 902 | - sha256: "7afc60865a2429d994144f7d66ced2ae4305fe35d82890b8766e3359872d872c" | |
| 903 | - url: "https://pub.flutter-io.cn" | |
| 902 | + sha256: c5fa04a80a620066c15cf19cc44773e19e9b38e989ff23ea32e5903ef1015950 | |
| 903 | + url: "https://pub.dev" | |
| 904 | 904 | source: hosted |
| 905 | - version: "3.1.3" | |
| 905 | + version: "3.3.1" | |
| 906 | 906 | matcher: |
| 907 | 907 | dependency: transitive |
| 908 | 908 | description: |
| 909 | 909 | name: matcher |
| 910 | 910 | sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb |
| 911 | - url: "https://pub.flutter-io.cn" | |
| 911 | + url: "https://pub.dev" | |
| 912 | 912 | source: hosted |
| 913 | 913 | version: "0.12.16+1" |
| 914 | 914 | material_color_utilities: |
| ... | ... | @@ -916,7 +916,7 @@ packages: |
| 916 | 916 | description: |
| 917 | 917 | name: material_color_utilities |
| 918 | 918 | sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec |
| 919 | - url: "https://pub.flutter-io.cn" | |
| 919 | + url: "https://pub.dev" | |
| 920 | 920 | source: hosted |
| 921 | 921 | version: "0.11.1" |
| 922 | 922 | meta: |
| ... | ... | @@ -924,7 +924,7 @@ packages: |
| 924 | 924 | description: |
| 925 | 925 | name: meta |
| 926 | 926 | sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 |
| 927 | - url: "https://pub.flutter-io.cn" | |
| 927 | + url: "https://pub.dev" | |
| 928 | 928 | source: hosted |
| 929 | 929 | version: "1.15.0" |
| 930 | 930 | mime: |
| ... | ... | @@ -932,7 +932,7 @@ packages: |
| 932 | 932 | description: |
| 933 | 933 | name: mime |
| 934 | 934 | sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a" |
| 935 | - url: "https://pub.flutter-io.cn" | |
| 935 | + url: "https://pub.dev" | |
| 936 | 936 | source: hosted |
| 937 | 937 | version: "1.0.6" |
| 938 | 938 | nested: |
| ... | ... | @@ -940,7 +940,7 @@ packages: |
| 940 | 940 | description: |
| 941 | 941 | name: nested |
| 942 | 942 | sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" |
| 943 | - url: "https://pub.flutter-io.cn" | |
| 943 | + url: "https://pub.dev" | |
| 944 | 944 | source: hosted |
| 945 | 945 | version: "1.0.0" |
| 946 | 946 | nested_scroll_views: |
| ... | ... | @@ -948,7 +948,7 @@ packages: |
| 948 | 948 | description: |
| 949 | 949 | name: nested_scroll_views |
| 950 | 950 | sha256: "37d0f35682441a4cdf5f50bd5767a53b7192780a085c9dc728fc273df8a3443a" |
| 951 | - url: "https://pub.flutter-io.cn" | |
| 951 | + url: "https://pub.dev" | |
| 952 | 952 | source: hosted |
| 953 | 953 | version: "0.0.12" |
| 954 | 954 | nm: |
| ... | ... | @@ -956,7 +956,7 @@ packages: |
| 956 | 956 | description: |
| 957 | 957 | name: nm |
| 958 | 958 | sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" |
| 959 | - url: "https://pub.flutter-io.cn" | |
| 959 | + url: "https://pub.dev" | |
| 960 | 960 | source: hosted |
| 961 | 961 | version: "0.5.0" |
| 962 | 962 | octo_image: |
| ... | ... | @@ -964,23 +964,23 @@ packages: |
| 964 | 964 | description: |
| 965 | 965 | name: octo_image |
| 966 | 966 | sha256: "34faa6639a78c7e3cbe79be6f9f96535867e879748ade7d17c9b1ae7536293bd" |
| 967 | - url: "https://pub.flutter-io.cn" | |
| 967 | + url: "https://pub.dev" | |
| 968 | 968 | source: hosted |
| 969 | 969 | version: "2.1.0" |
| 970 | 970 | package_config: |
| 971 | 971 | dependency: transitive |
| 972 | 972 | description: |
| 973 | 973 | name: package_config |
| 974 | - sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" | |
| 975 | - url: "https://pub.flutter-io.cn" | |
| 974 | + sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc | |
| 975 | + url: "https://pub.dev" | |
| 976 | 976 | source: hosted |
| 977 | - version: "2.1.0" | |
| 977 | + version: "2.2.0" | |
| 978 | 978 | package_info_plus: |
| 979 | 979 | dependency: "direct main" |
| 980 | 980 | description: |
| 981 | 981 | name: package_info_plus |
| 982 | 982 | sha256: "7e76fad405b3e4016cd39d08f455a4eb5199723cf594cd1b8916d47140d93017" |
| 983 | - url: "https://pub.flutter-io.cn" | |
| 983 | + url: "https://pub.dev" | |
| 984 | 984 | source: hosted |
| 985 | 985 | version: "4.2.0" |
| 986 | 986 | package_info_plus_platform_interface: |
| ... | ... | @@ -988,7 +988,7 @@ packages: |
| 988 | 988 | description: |
| 989 | 989 | name: package_info_plus_platform_interface |
| 990 | 990 | sha256: "9bc8ba46813a4cc42c66ab781470711781940780fd8beddd0c3da62506d3a6c6" |
| 991 | - url: "https://pub.flutter-io.cn" | |
| 991 | + url: "https://pub.dev" | |
| 992 | 992 | source: hosted |
| 993 | 993 | version: "2.0.1" |
| 994 | 994 | path: |
| ... | ... | @@ -996,31 +996,31 @@ packages: |
| 996 | 996 | description: |
| 997 | 997 | name: path |
| 998 | 998 | sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" |
| 999 | - url: "https://pub.flutter-io.cn" | |
| 999 | + url: "https://pub.dev" | |
| 1000 | 1000 | source: hosted |
| 1001 | 1001 | version: "1.9.0" |
| 1002 | 1002 | path_provider: |
| 1003 | 1003 | dependency: "direct main" |
| 1004 | 1004 | description: |
| 1005 | 1005 | name: path_provider |
| 1006 | - sha256: fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378 | |
| 1007 | - url: "https://pub.flutter-io.cn" | |
| 1006 | + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" | |
| 1007 | + url: "https://pub.dev" | |
| 1008 | 1008 | source: hosted |
| 1009 | - version: "2.1.4" | |
| 1009 | + version: "2.1.5" | |
| 1010 | 1010 | path_provider_android: |
| 1011 | 1011 | dependency: transitive |
| 1012 | 1012 | description: |
| 1013 | 1013 | name: path_provider_android |
| 1014 | - sha256: a248d8146ee5983446bf03ed5ea8f6533129a12b11f12057ad1b4a67a2b3b41d | |
| 1015 | - url: "https://pub.flutter-io.cn" | |
| 1014 | + sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9 | |
| 1015 | + url: "https://pub.dev" | |
| 1016 | 1016 | source: hosted |
| 1017 | - version: "2.2.4" | |
| 1017 | + version: "2.2.17" | |
| 1018 | 1018 | path_provider_foundation: |
| 1019 | 1019 | dependency: transitive |
| 1020 | 1020 | description: |
| 1021 | 1021 | name: path_provider_foundation |
| 1022 | 1022 | sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942" |
| 1023 | - url: "https://pub.flutter-io.cn" | |
| 1023 | + url: "https://pub.dev" | |
| 1024 | 1024 | source: hosted |
| 1025 | 1025 | version: "2.4.1" |
| 1026 | 1026 | path_provider_linux: |
| ... | ... | @@ -1028,7 +1028,7 @@ packages: |
| 1028 | 1028 | description: |
| 1029 | 1029 | name: path_provider_linux |
| 1030 | 1030 | sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 |
| 1031 | - url: "https://pub.flutter-io.cn" | |
| 1031 | + url: "https://pub.dev" | |
| 1032 | 1032 | source: hosted |
| 1033 | 1033 | version: "2.2.1" |
| 1034 | 1034 | path_provider_platform_interface: |
| ... | ... | @@ -1036,7 +1036,7 @@ packages: |
| 1036 | 1036 | description: |
| 1037 | 1037 | name: path_provider_platform_interface |
| 1038 | 1038 | sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" |
| 1039 | - url: "https://pub.flutter-io.cn" | |
| 1039 | + url: "https://pub.dev" | |
| 1040 | 1040 | source: hosted |
| 1041 | 1041 | version: "2.1.2" |
| 1042 | 1042 | path_provider_windows: |
| ... | ... | @@ -1044,23 +1044,23 @@ packages: |
| 1044 | 1044 | description: |
| 1045 | 1045 | name: path_provider_windows |
| 1046 | 1046 | sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 |
| 1047 | - url: "https://pub.flutter-io.cn" | |
| 1047 | + url: "https://pub.dev" | |
| 1048 | 1048 | source: hosted |
| 1049 | 1049 | version: "2.3.0" |
| 1050 | 1050 | percent_indicator: |
| 1051 | 1051 | dependency: "direct main" |
| 1052 | 1052 | description: |
| 1053 | 1053 | name: percent_indicator |
| 1054 | - sha256: "0d77d5c6fa9b7f60202cedf748b568ba9ba38d3f30405d6ceae4da76f5185462" | |
| 1055 | - url: "https://pub.flutter-io.cn" | |
| 1054 | + sha256: "157d29133bbc6ecb11f923d36e7960a96a3f28837549a20b65e5135729f0f9fd" | |
| 1055 | + url: "https://pub.dev" | |
| 1056 | 1056 | source: hosted |
| 1057 | - version: "4.2.4" | |
| 1057 | + version: "4.2.5" | |
| 1058 | 1058 | permission_handler: |
| 1059 | 1059 | dependency: "direct main" |
| 1060 | 1060 | description: |
| 1061 | 1061 | name: permission_handler |
| 1062 | 1062 | sha256: bc56bfe9d3f44c3c612d8d393bd9b174eb796d706759f9b495ac254e4294baa5 |
| 1063 | - url: "https://pub.flutter-io.cn" | |
| 1063 | + url: "https://pub.dev" | |
| 1064 | 1064 | source: hosted |
| 1065 | 1065 | version: "10.4.5" |
| 1066 | 1066 | permission_handler_android: |
| ... | ... | @@ -1068,7 +1068,7 @@ packages: |
| 1068 | 1068 | description: |
| 1069 | 1069 | name: permission_handler_android |
| 1070 | 1070 | sha256: "59c6322171c29df93a22d150ad95f3aa19ed86542eaec409ab2691b8f35f9a47" |
| 1071 | - url: "https://pub.flutter-io.cn" | |
| 1071 | + url: "https://pub.dev" | |
| 1072 | 1072 | source: hosted |
| 1073 | 1073 | version: "10.3.6" |
| 1074 | 1074 | permission_handler_apple: |
| ... | ... | @@ -1076,7 +1076,7 @@ packages: |
| 1076 | 1076 | description: |
| 1077 | 1077 | name: permission_handler_apple |
| 1078 | 1078 | sha256: "99e220bce3f8877c78e4ace901082fb29fa1b4ebde529ad0932d8d664b34f3f5" |
| 1079 | - url: "https://pub.flutter-io.cn" | |
| 1079 | + url: "https://pub.dev" | |
| 1080 | 1080 | source: hosted |
| 1081 | 1081 | version: "9.1.4" |
| 1082 | 1082 | permission_handler_platform_interface: |
| ... | ... | @@ -1084,7 +1084,7 @@ packages: |
| 1084 | 1084 | description: |
| 1085 | 1085 | name: permission_handler_platform_interface |
| 1086 | 1086 | sha256: "6760eb5ef34589224771010805bea6054ad28453906936f843a8cc4d3a55c4a4" |
| 1087 | - url: "https://pub.flutter-io.cn" | |
| 1087 | + url: "https://pub.dev" | |
| 1088 | 1088 | source: hosted |
| 1089 | 1089 | version: "3.12.0" |
| 1090 | 1090 | permission_handler_windows: |
| ... | ... | @@ -1092,7 +1092,7 @@ packages: |
| 1092 | 1092 | description: |
| 1093 | 1093 | name: permission_handler_windows |
| 1094 | 1094 | sha256: cc074aace208760f1eee6aa4fae766b45d947df85bc831cde77009cdb4720098 |
| 1095 | - url: "https://pub.flutter-io.cn" | |
| 1095 | + url: "https://pub.dev" | |
| 1096 | 1096 | source: hosted |
| 1097 | 1097 | version: "0.1.3" |
| 1098 | 1098 | petitparser: |
| ... | ... | @@ -1100,7 +1100,7 @@ packages: |
| 1100 | 1100 | description: |
| 1101 | 1101 | name: petitparser |
| 1102 | 1102 | sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 |
| 1103 | - url: "https://pub.flutter-io.cn" | |
| 1103 | + url: "https://pub.dev" | |
| 1104 | 1104 | source: hosted |
| 1105 | 1105 | version: "6.0.2" |
| 1106 | 1106 | platform: |
| ... | ... | @@ -1108,7 +1108,7 @@ packages: |
| 1108 | 1108 | description: |
| 1109 | 1109 | name: platform |
| 1110 | 1110 | sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" |
| 1111 | - url: "https://pub.flutter-io.cn" | |
| 1111 | + url: "https://pub.dev" | |
| 1112 | 1112 | source: hosted |
| 1113 | 1113 | version: "3.1.6" |
| 1114 | 1114 | plugin_platform_interface: |
| ... | ... | @@ -1116,55 +1116,63 @@ packages: |
| 1116 | 1116 | description: |
| 1117 | 1117 | name: plugin_platform_interface |
| 1118 | 1118 | sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" |
| 1119 | - url: "https://pub.flutter-io.cn" | |
| 1119 | + url: "https://pub.dev" | |
| 1120 | 1120 | source: hosted |
| 1121 | 1121 | version: "2.1.8" |
| 1122 | 1122 | pool: |
| 1123 | 1123 | dependency: transitive |
| 1124 | 1124 | description: |
| 1125 | 1125 | name: pool |
| 1126 | - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" | |
| 1127 | - url: "https://pub.flutter-io.cn" | |
| 1126 | + sha256: "4177f68c237ea2128d1bee66ac17b2ce05ba3dbaafcbdd54c5d40a39d0b6b11c" | |
| 1127 | + url: "https://pub.dev" | |
| 1128 | 1128 | source: hosted |
| 1129 | - version: "1.5.1" | |
| 1129 | + version: "1.5.3" | |
| 1130 | + posix: | |
| 1131 | + dependency: transitive | |
| 1132 | + description: | |
| 1133 | + name: posix | |
| 1134 | + sha256: bc1bad54ad2b735816e31f8d4600cfde6c7839975085ddfbca48b6c9f7c4044e | |
| 1135 | + url: "https://pub.dev" | |
| 1136 | + source: hosted | |
| 1137 | + version: "6.5.2" | |
| 1130 | 1138 | pretty_dio_logger: |
| 1131 | 1139 | dependency: "direct main" |
| 1132 | 1140 | description: |
| 1133 | 1141 | name: pretty_dio_logger |
| 1134 | 1142 | sha256: "36f2101299786d567869493e2f5731de61ce130faa14679473b26905a92b6407" |
| 1135 | - url: "https://pub.flutter-io.cn" | |
| 1143 | + url: "https://pub.dev" | |
| 1136 | 1144 | source: hosted |
| 1137 | 1145 | version: "1.4.0" |
| 1138 | 1146 | provider: |
| 1139 | 1147 | dependency: transitive |
| 1140 | 1148 | description: |
| 1141 | 1149 | name: provider |
| 1142 | - sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c | |
| 1143 | - url: "https://pub.flutter-io.cn" | |
| 1150 | + sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272" | |
| 1151 | + url: "https://pub.dev" | |
| 1144 | 1152 | source: hosted |
| 1145 | - version: "6.1.2" | |
| 1153 | + version: "6.1.5+1" | |
| 1146 | 1154 | pub_semver: |
| 1147 | 1155 | dependency: transitive |
| 1148 | 1156 | description: |
| 1149 | 1157 | name: pub_semver |
| 1150 | - sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" | |
| 1151 | - url: "https://pub.flutter-io.cn" | |
| 1158 | + sha256: "261236774e8b1d69cfc6b9eabbc96c40f25e7a2d6b171f3385d4f65d5734fb24" | |
| 1159 | + url: "https://pub.dev" | |
| 1152 | 1160 | source: hosted |
| 1153 | - version: "2.1.4" | |
| 1161 | + version: "2.2.1" | |
| 1154 | 1162 | pubspec_parse: |
| 1155 | 1163 | dependency: transitive |
| 1156 | 1164 | description: |
| 1157 | 1165 | name: pubspec_parse |
| 1158 | - sha256: "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0" | |
| 1159 | - url: "https://pub.flutter-io.cn" | |
| 1166 | + sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082" | |
| 1167 | + url: "https://pub.dev" | |
| 1160 | 1168 | source: hosted |
| 1161 | - version: "1.4.0" | |
| 1169 | + version: "1.5.0" | |
| 1162 | 1170 | pull_to_refresh: |
| 1163 | 1171 | dependency: "direct main" |
| 1164 | 1172 | description: |
| 1165 | 1173 | name: pull_to_refresh |
| 1166 | 1174 | sha256: bbadd5a931837b57739cf08736bea63167e284e71fb23b218c8c9a6e042aad12 |
| 1167 | - url: "https://pub.flutter-io.cn" | |
| 1175 | + url: "https://pub.dev" | |
| 1168 | 1176 | source: hosted |
| 1169 | 1177 | version: "2.0.0" |
| 1170 | 1178 | rational: |
| ... | ... | @@ -1172,63 +1180,55 @@ packages: |
| 1172 | 1180 | description: |
| 1173 | 1181 | name: rational |
| 1174 | 1182 | sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336 |
| 1175 | - url: "https://pub.flutter-io.cn" | |
| 1183 | + url: "https://pub.dev" | |
| 1176 | 1184 | source: hosted |
| 1177 | 1185 | version: "2.2.3" |
| 1178 | - recase: | |
| 1179 | - dependency: transitive | |
| 1180 | - description: | |
| 1181 | - name: recase | |
| 1182 | - sha256: e4eb4ec2dcdee52dcf99cb4ceabaffc631d7424ee55e56f280bc039737f89213 | |
| 1183 | - url: "https://pub.flutter-io.cn" | |
| 1184 | - source: hosted | |
| 1185 | - version: "4.1.0" | |
| 1186 | 1186 | responsive_framework: |
| 1187 | 1187 | dependency: "direct main" |
| 1188 | 1188 | description: |
| 1189 | 1189 | name: responsive_framework |
| 1190 | 1190 | sha256: a8e1c13d4ba980c60cbf6fa1e9907cd60662bf2585184d7c96ca46c43de91552 |
| 1191 | - url: "https://pub.flutter-io.cn" | |
| 1191 | + url: "https://pub.dev" | |
| 1192 | 1192 | source: hosted |
| 1193 | 1193 | version: "1.5.1" |
| 1194 | 1194 | rxdart: |
| 1195 | 1195 | dependency: transitive |
| 1196 | 1196 | description: |
| 1197 | 1197 | name: rxdart |
| 1198 | - sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" | |
| 1199 | - url: "https://pub.flutter-io.cn" | |
| 1198 | + sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" | |
| 1199 | + url: "https://pub.dev" | |
| 1200 | 1200 | source: hosted |
| 1201 | - version: "0.27.7" | |
| 1201 | + version: "0.28.0" | |
| 1202 | 1202 | shared_preferences: |
| 1203 | 1203 | dependency: "direct main" |
| 1204 | 1204 | description: |
| 1205 | 1205 | name: shared_preferences |
| 1206 | - sha256: d3bbe5553a986e83980916ded2f0b435ef2e1893dfaa29d5a7a790d0eca12180 | |
| 1207 | - url: "https://pub.flutter-io.cn" | |
| 1206 | + sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5" | |
| 1207 | + url: "https://pub.dev" | |
| 1208 | 1208 | source: hosted |
| 1209 | - version: "2.2.3" | |
| 1209 | + version: "2.5.3" | |
| 1210 | 1210 | shared_preferences_android: |
| 1211 | 1211 | dependency: transitive |
| 1212 | 1212 | description: |
| 1213 | 1213 | name: shared_preferences_android |
| 1214 | - sha256: "1ee8bf911094a1b592de7ab29add6f826a7331fb854273d55918693d5364a1f2" | |
| 1215 | - url: "https://pub.flutter-io.cn" | |
| 1214 | + sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e" | |
| 1215 | + url: "https://pub.dev" | |
| 1216 | 1216 | source: hosted |
| 1217 | - version: "2.2.2" | |
| 1217 | + version: "2.4.11" | |
| 1218 | 1218 | shared_preferences_foundation: |
| 1219 | 1219 | dependency: transitive |
| 1220 | 1220 | description: |
| 1221 | 1221 | name: shared_preferences_foundation |
| 1222 | - sha256: "07e050c7cd39bad516f8d64c455f04508d09df104be326d8c02551590a0d513d" | |
| 1223 | - url: "https://pub.flutter-io.cn" | |
| 1222 | + sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03" | |
| 1223 | + url: "https://pub.dev" | |
| 1224 | 1224 | source: hosted |
| 1225 | - version: "2.5.3" | |
| 1225 | + version: "2.5.4" | |
| 1226 | 1226 | shared_preferences_linux: |
| 1227 | 1227 | dependency: transitive |
| 1228 | 1228 | description: |
| 1229 | 1229 | name: shared_preferences_linux |
| 1230 | 1230 | sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" |
| 1231 | - url: "https://pub.flutter-io.cn" | |
| 1231 | + url: "https://pub.dev" | |
| 1232 | 1232 | source: hosted |
| 1233 | 1233 | version: "2.4.1" |
| 1234 | 1234 | shared_preferences_platform_interface: |
| ... | ... | @@ -1236,41 +1236,41 @@ packages: |
| 1236 | 1236 | description: |
| 1237 | 1237 | name: shared_preferences_platform_interface |
| 1238 | 1238 | sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" |
| 1239 | - url: "https://pub.flutter-io.cn" | |
| 1239 | + url: "https://pub.dev" | |
| 1240 | 1240 | source: hosted |
| 1241 | 1241 | version: "2.4.1" |
| 1242 | 1242 | shared_preferences_web: |
| 1243 | 1243 | dependency: transitive |
| 1244 | 1244 | description: |
| 1245 | 1245 | name: shared_preferences_web |
| 1246 | - sha256: "59dc807b94d29d52ddbb1b3c0d3b9d0a67fc535a64e62a5542c8db0513fcb6c2" | |
| 1247 | - url: "https://pub.flutter-io.cn" | |
| 1246 | + sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 | |
| 1247 | + url: "https://pub.dev" | |
| 1248 | 1248 | source: hosted |
| 1249 | - version: "2.4.1" | |
| 1249 | + version: "2.4.3" | |
| 1250 | 1250 | shared_preferences_windows: |
| 1251 | 1251 | dependency: transitive |
| 1252 | 1252 | description: |
| 1253 | 1253 | name: shared_preferences_windows |
| 1254 | 1254 | sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" |
| 1255 | - url: "https://pub.flutter-io.cn" | |
| 1255 | + url: "https://pub.dev" | |
| 1256 | 1256 | source: hosted |
| 1257 | 1257 | version: "2.4.1" |
| 1258 | 1258 | shelf: |
| 1259 | 1259 | dependency: transitive |
| 1260 | 1260 | description: |
| 1261 | 1261 | name: shelf |
| 1262 | - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 | |
| 1263 | - url: "https://pub.flutter-io.cn" | |
| 1262 | + sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12 | |
| 1263 | + url: "https://pub.dev" | |
| 1264 | 1264 | source: hosted |
| 1265 | - version: "1.4.1" | |
| 1265 | + version: "1.4.2" | |
| 1266 | 1266 | shelf_web_socket: |
| 1267 | 1267 | dependency: transitive |
| 1268 | 1268 | description: |
| 1269 | 1269 | name: shelf_web_socket |
| 1270 | - sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" | |
| 1271 | - url: "https://pub.flutter-io.cn" | |
| 1270 | + sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925" | |
| 1271 | + url: "https://pub.dev" | |
| 1272 | 1272 | source: hosted |
| 1273 | - version: "1.0.4" | |
| 1273 | + version: "3.0.0" | |
| 1274 | 1274 | sky_engine: |
| 1275 | 1275 | dependency: transitive |
| 1276 | 1276 | description: flutter |
| ... | ... | @@ -1280,56 +1280,72 @@ packages: |
| 1280 | 1280 | dependency: transitive |
| 1281 | 1281 | description: |
| 1282 | 1282 | name: source_gen |
| 1283 | - sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" | |
| 1284 | - url: "https://pub.flutter-io.cn" | |
| 1283 | + sha256: "35c8150ece9e8c8d263337a265153c3329667640850b9304861faea59fc98f6b" | |
| 1284 | + url: "https://pub.dev" | |
| 1285 | 1285 | source: hosted |
| 1286 | - version: "1.5.0" | |
| 1286 | + version: "2.0.0" | |
| 1287 | 1287 | source_helper: |
| 1288 | 1288 | dependency: transitive |
| 1289 | 1289 | description: |
| 1290 | 1290 | name: source_helper |
| 1291 | - sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" | |
| 1292 | - url: "https://pub.flutter-io.cn" | |
| 1291 | + sha256: a447acb083d3a5ef17f983dd36201aeea33fedadb3228fa831f2f0c92f0f3aca | |
| 1292 | + url: "https://pub.dev" | |
| 1293 | 1293 | source: hosted |
| 1294 | - version: "1.3.4" | |
| 1294 | + version: "1.3.7" | |
| 1295 | 1295 | source_span: |
| 1296 | 1296 | dependency: transitive |
| 1297 | 1297 | description: |
| 1298 | 1298 | name: source_span |
| 1299 | 1299 | sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" |
| 1300 | - url: "https://pub.flutter-io.cn" | |
| 1300 | + url: "https://pub.dev" | |
| 1301 | 1301 | source: hosted |
| 1302 | 1302 | version: "1.10.0" |
| 1303 | - sprintf: | |
| 1304 | - dependency: transitive | |
| 1305 | - description: | |
| 1306 | - name: sprintf | |
| 1307 | - sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" | |
| 1308 | - url: "https://pub.flutter-io.cn" | |
| 1309 | - source: hosted | |
| 1310 | - version: "7.0.0" | |
| 1311 | 1303 | sqflite: |
| 1312 | 1304 | dependency: "direct main" |
| 1313 | 1305 | description: |
| 1314 | 1306 | name: sqflite |
| 1315 | - sha256: a43e5a27235518c03ca238e7b4732cf35eabe863a369ceba6cbefa537a66f16d | |
| 1316 | - url: "https://pub.flutter-io.cn" | |
| 1307 | + sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb" | |
| 1308 | + url: "https://pub.dev" | |
| 1317 | 1309 | source: hosted |
| 1318 | - version: "2.3.3+1" | |
| 1310 | + version: "2.4.1" | |
| 1311 | + sqflite_android: | |
| 1312 | + dependency: transitive | |
| 1313 | + description: | |
| 1314 | + name: sqflite_android | |
| 1315 | + sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3" | |
| 1316 | + url: "https://pub.dev" | |
| 1317 | + source: hosted | |
| 1318 | + version: "2.4.0" | |
| 1319 | 1319 | sqflite_common: |
| 1320 | 1320 | dependency: transitive |
| 1321 | 1321 | description: |
| 1322 | 1322 | name: sqflite_common |
| 1323 | - sha256: "3da423ce7baf868be70e2c0976c28a1bb2f73644268b7ffa7d2e08eab71f16a4" | |
| 1324 | - url: "https://pub.flutter-io.cn" | |
| 1323 | + sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709" | |
| 1324 | + url: "https://pub.dev" | |
| 1325 | 1325 | source: hosted |
| 1326 | - version: "2.5.4" | |
| 1326 | + version: "2.5.4+6" | |
| 1327 | + sqflite_darwin: | |
| 1328 | + dependency: transitive | |
| 1329 | + description: | |
| 1330 | + name: sqflite_darwin | |
| 1331 | + sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c" | |
| 1332 | + url: "https://pub.dev" | |
| 1333 | + source: hosted | |
| 1334 | + version: "2.4.1+1" | |
| 1335 | + sqflite_platform_interface: | |
| 1336 | + dependency: transitive | |
| 1337 | + description: | |
| 1338 | + name: sqflite_platform_interface | |
| 1339 | + sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" | |
| 1340 | + url: "https://pub.dev" | |
| 1341 | + source: hosted | |
| 1342 | + version: "2.4.0" | |
| 1327 | 1343 | stack_trace: |
| 1328 | 1344 | dependency: transitive |
| 1329 | 1345 | description: |
| 1330 | 1346 | name: stack_trace |
| 1331 | 1347 | sha256: "9f47fd3630d76be3ab26f0ee06d213679aa425996925ff3feffdec504931c377" |
| 1332 | - url: "https://pub.flutter-io.cn" | |
| 1348 | + url: "https://pub.dev" | |
| 1333 | 1349 | source: hosted |
| 1334 | 1350 | version: "1.12.0" |
| 1335 | 1351 | stream_channel: |
| ... | ... | @@ -1337,39 +1353,39 @@ packages: |
| 1337 | 1353 | description: |
| 1338 | 1354 | name: stream_channel |
| 1339 | 1355 | sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 |
| 1340 | - url: "https://pub.flutter-io.cn" | |
| 1356 | + url: "https://pub.dev" | |
| 1341 | 1357 | source: hosted |
| 1342 | 1358 | version: "2.1.2" |
| 1343 | 1359 | stream_transform: |
| 1344 | 1360 | dependency: transitive |
| 1345 | 1361 | description: |
| 1346 | 1362 | name: stream_transform |
| 1347 | - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871 | |
| 1348 | - url: "https://pub.flutter-io.cn" | |
| 1363 | + sha256: a00e5f18bffc764f923e7dec1038527f7fe7a1791361a7117f0358193f13d53a | |
| 1364 | + url: "https://pub.dev" | |
| 1349 | 1365 | source: hosted |
| 1350 | - version: "2.1.1" | |
| 1366 | + version: "2.1.2" | |
| 1351 | 1367 | string_scanner: |
| 1352 | 1368 | dependency: transitive |
| 1353 | 1369 | description: |
| 1354 | 1370 | name: string_scanner |
| 1355 | 1371 | sha256: "688af5ed3402a4bde5b3a6c15fd768dbf2621a614950b17f04626c431ab3c4c3" |
| 1356 | - url: "https://pub.flutter-io.cn" | |
| 1372 | + url: "https://pub.dev" | |
| 1357 | 1373 | source: hosted |
| 1358 | 1374 | version: "1.3.0" |
| 1359 | 1375 | synchronized: |
| 1360 | 1376 | dependency: transitive |
| 1361 | 1377 | description: |
| 1362 | 1378 | name: synchronized |
| 1363 | - sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" | |
| 1364 | - url: "https://pub.flutter-io.cn" | |
| 1379 | + sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225" | |
| 1380 | + url: "https://pub.dev" | |
| 1365 | 1381 | source: hosted |
| 1366 | - version: "3.1.0+1" | |
| 1382 | + version: "3.3.0+3" | |
| 1367 | 1383 | term_glyph: |
| 1368 | 1384 | dependency: transitive |
| 1369 | 1385 | description: |
| 1370 | 1386 | name: term_glyph |
| 1371 | 1387 | sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 |
| 1372 | - url: "https://pub.flutter-io.cn" | |
| 1388 | + url: "https://pub.dev" | |
| 1373 | 1389 | source: hosted |
| 1374 | 1390 | version: "1.2.1" |
| 1375 | 1391 | test_api: |
| ... | ... | @@ -1377,79 +1393,79 @@ packages: |
| 1377 | 1393 | description: |
| 1378 | 1394 | name: test_api |
| 1379 | 1395 | sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c" |
| 1380 | - url: "https://pub.flutter-io.cn" | |
| 1396 | + url: "https://pub.dev" | |
| 1381 | 1397 | source: hosted |
| 1382 | 1398 | version: "0.7.3" |
| 1383 | 1399 | timing: |
| 1384 | 1400 | dependency: transitive |
| 1385 | 1401 | description: |
| 1386 | 1402 | name: timing |
| 1387 | - sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" | |
| 1388 | - url: "https://pub.flutter-io.cn" | |
| 1403 | + sha256: "62ee18aca144e4a9f29d212f5a4c6a053be252b895ab14b5821996cff4ed90fe" | |
| 1404 | + url: "https://pub.dev" | |
| 1389 | 1405 | source: hosted |
| 1390 | - version: "1.0.1" | |
| 1406 | + version: "1.0.2" | |
| 1391 | 1407 | tobias: |
| 1392 | 1408 | dependency: "direct main" |
| 1393 | 1409 | description: |
| 1394 | 1410 | name: tobias |
| 1395 | 1411 | sha256: "32836a9dae348d1c3f5f4247ed0a6a409fd5b9ddf490b06966a0fad2fd02cb7a" |
| 1396 | - url: "https://pub.flutter-io.cn" | |
| 1412 | + url: "https://pub.dev" | |
| 1397 | 1413 | source: hosted |
| 1398 | 1414 | version: "3.3.2" |
| 1399 | 1415 | typed_data: |
| 1400 | 1416 | dependency: transitive |
| 1401 | 1417 | description: |
| 1402 | 1418 | name: typed_data |
| 1403 | - sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c | |
| 1404 | - url: "https://pub.flutter-io.cn" | |
| 1419 | + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 | |
| 1420 | + url: "https://pub.dev" | |
| 1405 | 1421 | source: hosted |
| 1406 | - version: "1.3.2" | |
| 1422 | + version: "1.4.0" | |
| 1407 | 1423 | umeng_apm_sdk: |
| 1408 | 1424 | dependency: "direct main" |
| 1409 | 1425 | description: |
| 1410 | 1426 | name: umeng_apm_sdk |
| 1411 | - sha256: a1d1afa3fbcc71079fec2acdf9189a24c9d5350c30f3048b17b729c169ff0e0f | |
| 1412 | - url: "https://pub.flutter-io.cn" | |
| 1427 | + sha256: "37f61a30ad84c06d89bedbcf00ca4f09347468a2186975c4c121aee1db3a2083" | |
| 1428 | + url: "https://pub.dev" | |
| 1413 | 1429 | source: hosted |
| 1414 | - version: "2.3.5" | |
| 1430 | + version: "2.3.7" | |
| 1415 | 1431 | umeng_common_sdk: |
| 1416 | 1432 | dependency: "direct main" |
| 1417 | 1433 | description: |
| 1418 | 1434 | name: umeng_common_sdk |
| 1419 | 1435 | sha256: "203ae013220ffd00c677a164636239a2c9722ba533b6f25e00e7a4929a91aecd" |
| 1420 | - url: "https://pub.flutter-io.cn" | |
| 1436 | + url: "https://pub.dev" | |
| 1421 | 1437 | source: hosted |
| 1422 | 1438 | version: "1.3.1" |
| 1423 | 1439 | url_launcher: |
| 1424 | 1440 | dependency: "direct main" |
| 1425 | 1441 | description: |
| 1426 | 1442 | name: url_launcher |
| 1427 | - sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603" | |
| 1428 | - url: "https://pub.flutter-io.cn" | |
| 1443 | + sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8 | |
| 1444 | + url: "https://pub.dev" | |
| 1429 | 1445 | source: hosted |
| 1430 | - version: "6.3.1" | |
| 1446 | + version: "6.3.2" | |
| 1431 | 1447 | url_launcher_android: |
| 1432 | 1448 | dependency: transitive |
| 1433 | 1449 | description: |
| 1434 | 1450 | name: url_launcher_android |
| 1435 | - sha256: "17cd5e205ea615e2c6ea7a77323a11712dffa0720a8a90540db57a01347f9ad9" | |
| 1436 | - url: "https://pub.flutter-io.cn" | |
| 1451 | + sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656" | |
| 1452 | + url: "https://pub.dev" | |
| 1437 | 1453 | source: hosted |
| 1438 | - version: "6.3.2" | |
| 1454 | + version: "6.3.17" | |
| 1439 | 1455 | url_launcher_ios: |
| 1440 | 1456 | dependency: transitive |
| 1441 | 1457 | description: |
| 1442 | 1458 | name: url_launcher_ios |
| 1443 | - sha256: "16a513b6c12bb419304e72ea0ae2ab4fed569920d1c7cb850263fe3acc824626" | |
| 1444 | - url: "https://pub.flutter-io.cn" | |
| 1459 | + sha256: "7f2022359d4c099eea7df3fdf739f7d3d3b9faf3166fb1dd390775176e0b76cb" | |
| 1460 | + url: "https://pub.dev" | |
| 1445 | 1461 | source: hosted |
| 1446 | - version: "6.3.2" | |
| 1462 | + version: "6.3.3" | |
| 1447 | 1463 | url_launcher_linux: |
| 1448 | 1464 | dependency: transitive |
| 1449 | 1465 | description: |
| 1450 | 1466 | name: url_launcher_linux |
| 1451 | 1467 | sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935" |
| 1452 | - url: "https://pub.flutter-io.cn" | |
| 1468 | + url: "https://pub.dev" | |
| 1453 | 1469 | source: hosted |
| 1454 | 1470 | version: "3.2.1" |
| 1455 | 1471 | url_launcher_macos: |
| ... | ... | @@ -1457,7 +1473,7 @@ packages: |
| 1457 | 1473 | description: |
| 1458 | 1474 | name: url_launcher_macos |
| 1459 | 1475 | sha256: "17ba2000b847f334f16626a574c702b196723af2a289e7a93ffcb79acff855c2" |
| 1460 | - url: "https://pub.flutter-io.cn" | |
| 1476 | + url: "https://pub.dev" | |
| 1461 | 1477 | source: hosted |
| 1462 | 1478 | version: "3.2.2" |
| 1463 | 1479 | url_launcher_platform_interface: |
| ... | ... | @@ -1465,39 +1481,39 @@ packages: |
| 1465 | 1481 | description: |
| 1466 | 1482 | name: url_launcher_platform_interface |
| 1467 | 1483 | sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" |
| 1468 | - url: "https://pub.flutter-io.cn" | |
| 1484 | + url: "https://pub.dev" | |
| 1469 | 1485 | source: hosted |
| 1470 | 1486 | version: "2.3.2" |
| 1471 | 1487 | url_launcher_web: |
| 1472 | 1488 | dependency: transitive |
| 1473 | 1489 | description: |
| 1474 | 1490 | name: url_launcher_web |
| 1475 | - sha256: "772638d3b34c779ede05ba3d38af34657a05ac55b06279ea6edd409e323dca8e" | |
| 1476 | - url: "https://pub.flutter-io.cn" | |
| 1491 | + sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2" | |
| 1492 | + url: "https://pub.dev" | |
| 1477 | 1493 | source: hosted |
| 1478 | - version: "2.3.3" | |
| 1494 | + version: "2.4.1" | |
| 1479 | 1495 | url_launcher_windows: |
| 1480 | 1496 | dependency: transitive |
| 1481 | 1497 | description: |
| 1482 | 1498 | name: url_launcher_windows |
| 1483 | - sha256: "44cf3aabcedde30f2dba119a9dea3b0f2672fbe6fa96e85536251d678216b3c4" | |
| 1484 | - url: "https://pub.flutter-io.cn" | |
| 1499 | + sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77" | |
| 1500 | + url: "https://pub.dev" | |
| 1485 | 1501 | source: hosted |
| 1486 | - version: "3.1.3" | |
| 1502 | + version: "3.1.4" | |
| 1487 | 1503 | uuid: |
| 1488 | 1504 | dependency: transitive |
| 1489 | 1505 | description: |
| 1490 | 1506 | name: uuid |
| 1491 | - sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff | |
| 1492 | - url: "https://pub.flutter-io.cn" | |
| 1507 | + sha256: "9b129329f58692f6e6578329498a8fe9fbe98f090beb764ffbb8ee2eadd01dcd" | |
| 1508 | + url: "https://pub.dev" | |
| 1493 | 1509 | source: hosted |
| 1494 | - version: "4.5.1" | |
| 1510 | + version: "4.6.0" | |
| 1495 | 1511 | vector_math: |
| 1496 | 1512 | dependency: transitive |
| 1497 | 1513 | description: |
| 1498 | 1514 | name: vector_math |
| 1499 | 1515 | sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" |
| 1500 | - url: "https://pub.flutter-io.cn" | |
| 1516 | + url: "https://pub.dev" | |
| 1501 | 1517 | source: hosted |
| 1502 | 1518 | version: "2.1.4" |
| 1503 | 1519 | video_player: |
| ... | ... | @@ -1505,47 +1521,47 @@ packages: |
| 1505 | 1521 | description: |
| 1506 | 1522 | name: video_player |
| 1507 | 1523 | sha256: "4a8c3492d734f7c39c2588a3206707a05ee80cef52e8c7f3b2078d430c84bc17" |
| 1508 | - url: "https://pub.flutter-io.cn" | |
| 1524 | + url: "https://pub.dev" | |
| 1509 | 1525 | source: hosted |
| 1510 | 1526 | version: "2.9.2" |
| 1511 | 1527 | video_player_android: |
| 1512 | 1528 | dependency: transitive |
| 1513 | 1529 | description: |
| 1514 | 1530 | name: video_player_android |
| 1515 | - sha256: "134e1ad410d67e18a19486ed9512c72dfc6d8ffb284d0e8f2e99e903d1ba8fa3" | |
| 1516 | - url: "https://pub.flutter-io.cn" | |
| 1531 | + sha256: "28dcc4122079f40f93a0965b3679aff1a5f4251cf79611bd8011f937eb6b69de" | |
| 1532 | + url: "https://pub.dev" | |
| 1517 | 1533 | source: hosted |
| 1518 | - version: "2.4.14" | |
| 1534 | + version: "2.8.4" | |
| 1519 | 1535 | video_player_avfoundation: |
| 1520 | 1536 | dependency: transitive |
| 1521 | 1537 | description: |
| 1522 | 1538 | name: video_player_avfoundation |
| 1523 | - sha256: "33224c19775fd244be2d6e3dbd8e1826ab162877bd61123bf71890772119a2b7" | |
| 1524 | - url: "https://pub.flutter-io.cn" | |
| 1539 | + sha256: f9a780aac57802b2892f93787e5ea53b5f43cc57dc107bee9436458365be71cd | |
| 1540 | + url: "https://pub.dev" | |
| 1525 | 1541 | source: hosted |
| 1526 | - version: "2.6.5" | |
| 1542 | + version: "2.8.4" | |
| 1527 | 1543 | video_player_platform_interface: |
| 1528 | 1544 | dependency: transitive |
| 1529 | 1545 | description: |
| 1530 | 1546 | name: video_player_platform_interface |
| 1531 | - sha256: "229d7642ccd9f3dc4aba169609dd6b5f3f443bb4cc15b82f7785fcada5af9bbb" | |
| 1532 | - url: "https://pub.flutter-io.cn" | |
| 1547 | + sha256: cf2a1d29a284db648fd66cbd18aacc157f9862d77d2cc790f6f9678a46c1db5a | |
| 1548 | + url: "https://pub.dev" | |
| 1533 | 1549 | source: hosted |
| 1534 | - version: "6.2.3" | |
| 1550 | + version: "6.4.0" | |
| 1535 | 1551 | video_player_web: |
| 1536 | 1552 | dependency: transitive |
| 1537 | 1553 | description: |
| 1538 | 1554 | name: video_player_web |
| 1539 | - sha256: "6dcdd298136523eaf7dfc31abaf0dfba9aa8a8dbc96670e87e9d42b6f2caf774" | |
| 1540 | - url: "https://pub.flutter-io.cn" | |
| 1555 | + sha256: "9f3c00be2ef9b76a95d94ac5119fb843dca6f2c69e6c9968f6f2b6c9e7afbdeb" | |
| 1556 | + url: "https://pub.dev" | |
| 1541 | 1557 | source: hosted |
| 1542 | - version: "2.3.2" | |
| 1558 | + version: "2.4.0" | |
| 1543 | 1559 | vm_service: |
| 1544 | 1560 | dependency: transitive |
| 1545 | 1561 | description: |
| 1546 | 1562 | name: vm_service |
| 1547 | 1563 | sha256: f6be3ed8bd01289b34d679c2b62226f63c0e69f9fd2e50a6b3c1c729a961041b |
| 1548 | - url: "https://pub.flutter-io.cn" | |
| 1564 | + url: "https://pub.dev" | |
| 1549 | 1565 | source: hosted |
| 1550 | 1566 | version: "14.3.0" |
| 1551 | 1567 | wakelock_plus: |
| ... | ... | @@ -1553,7 +1569,7 @@ packages: |
| 1553 | 1569 | description: |
| 1554 | 1570 | name: wakelock_plus |
| 1555 | 1571 | sha256: f268ca2116db22e57577fb99d52515a24bdc1d570f12ac18bb762361d43b043d |
| 1556 | - url: "https://pub.flutter-io.cn" | |
| 1572 | + url: "https://pub.dev" | |
| 1557 | 1573 | source: hosted |
| 1558 | 1574 | version: "1.1.4" |
| 1559 | 1575 | wakelock_plus_platform_interface: |
| ... | ... | @@ -1561,55 +1577,63 @@ packages: |
| 1561 | 1577 | description: |
| 1562 | 1578 | name: wakelock_plus_platform_interface |
| 1563 | 1579 | sha256: "036deb14cd62f558ca3b73006d52ce049fabcdcb2eddfe0bf0fe4e8a943b5cf2" |
| 1564 | - url: "https://pub.flutter-io.cn" | |
| 1580 | + url: "https://pub.dev" | |
| 1565 | 1581 | source: hosted |
| 1566 | 1582 | version: "1.3.0" |
| 1567 | 1583 | watcher: |
| 1568 | 1584 | dependency: transitive |
| 1569 | 1585 | description: |
| 1570 | 1586 | name: watcher |
| 1571 | - sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104" | |
| 1572 | - url: "https://pub.flutter-io.cn" | |
| 1587 | + sha256: "1398c9f081a753f9226febe8900fce8f7d0a67163334e1c94a2438339d79d635" | |
| 1588 | + url: "https://pub.dev" | |
| 1573 | 1589 | source: hosted |
| 1574 | - version: "1.1.1" | |
| 1590 | + version: "1.2.1" | |
| 1575 | 1591 | web: |
| 1576 | 1592 | dependency: transitive |
| 1577 | 1593 | description: |
| 1578 | 1594 | name: web |
| 1579 | - sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" | |
| 1580 | - url: "https://pub.flutter-io.cn" | |
| 1595 | + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" | |
| 1596 | + url: "https://pub.dev" | |
| 1597 | + source: hosted | |
| 1598 | + version: "1.1.1" | |
| 1599 | + web_socket: | |
| 1600 | + dependency: transitive | |
| 1601 | + description: | |
| 1602 | + name: web_socket | |
| 1603 | + sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c" | |
| 1604 | + url: "https://pub.dev" | |
| 1581 | 1605 | source: hosted |
| 1582 | - version: "0.5.1" | |
| 1606 | + version: "1.0.1" | |
| 1583 | 1607 | web_socket_channel: |
| 1584 | 1608 | dependency: transitive |
| 1585 | 1609 | description: |
| 1586 | 1610 | name: web_socket_channel |
| 1587 | - sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b | |
| 1588 | - url: "https://pub.flutter-io.cn" | |
| 1611 | + sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8 | |
| 1612 | + url: "https://pub.dev" | |
| 1589 | 1613 | source: hosted |
| 1590 | - version: "2.4.0" | |
| 1614 | + version: "3.0.3" | |
| 1591 | 1615 | win32: |
| 1592 | 1616 | dependency: transitive |
| 1593 | 1617 | description: |
| 1594 | 1618 | name: win32 |
| 1595 | 1619 | sha256: daf97c9d80197ed7b619040e86c8ab9a9dad285e7671ee7390f9180cc828a51e |
| 1596 | - url: "https://pub.flutter-io.cn" | |
| 1620 | + url: "https://pub.dev" | |
| 1597 | 1621 | source: hosted |
| 1598 | 1622 | version: "5.10.1" |
| 1599 | 1623 | win32_registry: |
| 1600 | 1624 | dependency: transitive |
| 1601 | 1625 | description: |
| 1602 | 1626 | name: win32_registry |
| 1603 | - sha256: "10589e0d7f4e053f2c61023a31c9ce01146656a70b7b7f0828c0b46d7da2a9bb" | |
| 1604 | - url: "https://pub.flutter-io.cn" | |
| 1627 | + sha256: "21ec76dfc731550fd3e2ce7a33a9ea90b828fdf19a5c3bcf556fa992cfa99852" | |
| 1628 | + url: "https://pub.dev" | |
| 1605 | 1629 | source: hosted |
| 1606 | - version: "1.1.3" | |
| 1630 | + version: "1.1.5" | |
| 1607 | 1631 | xdg_directories: |
| 1608 | 1632 | dependency: transitive |
| 1609 | 1633 | description: |
| 1610 | 1634 | name: xdg_directories |
| 1611 | 1635 | sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" |
| 1612 | - url: "https://pub.flutter-io.cn" | |
| 1636 | + url: "https://pub.dev" | |
| 1613 | 1637 | source: hosted |
| 1614 | 1638 | version: "1.1.0" |
| 1615 | 1639 | xml: |
| ... | ... | @@ -1617,17 +1641,17 @@ packages: |
| 1617 | 1641 | description: |
| 1618 | 1642 | name: xml |
| 1619 | 1643 | sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 |
| 1620 | - url: "https://pub.flutter-io.cn" | |
| 1644 | + url: "https://pub.dev" | |
| 1621 | 1645 | source: hosted |
| 1622 | 1646 | version: "6.5.0" |
| 1623 | 1647 | yaml: |
| 1624 | 1648 | dependency: transitive |
| 1625 | 1649 | description: |
| 1626 | 1650 | name: yaml |
| 1627 | - sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" | |
| 1628 | - url: "https://pub.flutter-io.cn" | |
| 1651 | + sha256: f67cdd8e07d3c6329146aaef1ba043542b3134c12489f553ca9a7435d1068aea | |
| 1652 | + url: "https://pub.dev" | |
| 1629 | 1653 | source: hosted |
| 1630 | - version: "3.1.2" | |
| 1654 | + version: "3.1.4" | |
| 1631 | 1655 | sdks: |
| 1632 | 1656 | dart: ">=3.6.0 <4.0.0" |
| 1633 | 1657 | flutter: ">=3.27.0" | ... | ... |