我看到Dartson& amp; mongo_dart。
我正在运行mongo_dart 0.1.46。 - 我需要将它升级到mongo_dart 0.2.4
但是,当我升级mongo_dart时 - 我收到有关dartson的以下错误
包mongo_dart没有匹配0.2.4的版本派生自: - 门票取决于版本0.2.4
使用:
dependencies:
#Server Dependencies
json_object: "1.0.19"
mongo_dart: "0.2.4"
connection_pool: "0.1.0+2"
dartson: "0.2.4"
guinness: "0.1.17"
html: "0.12.2"
shelf: '>=0.6.2 <0.7.0'
shelf_static: "0.2.2"
shelf_route: "0.14.0"
这很奇怪,因为mongo_dart:&#39; 0.2.4&#39;存在于pub.dartlang上,它独立工作 https://pub.dartlang.org/packages/mongo_dart
通过测试pubspec.yaml中每个包的删除,我能够识别与dartson的冲突。
如果我将dartson移动到依赖列表的顶部,我会反过来:
dependencies:
#Server Dependencies
dartson: "0.2.4"
json_object: "1.0.19"
mongo_dart: "0.2.4"
connection_pool: "0.1.0+2"
guinness: "0.1.17"
html: "0.12.2"
shelf: '>=0.6.2 <0.7.0'
shelf_static: "0.2.2"
shelf_route: "0.14.0"
包dartson没有匹配0.2.4的版本派生自: - 门票取决于版本0.2.4
一起删除dartson可以正确安装mongo_dart。
两个图书馆之间是否存在已知问题?有没有浮出水面的冲突?
问题:如何让mongo_dart 0.2.4与Dartson 0.2.4一起运行
答案 0 :(得分:1)
我在pubspec上运行pub get verbose模式,问题似乎与包logging
有不同的依赖关系
Dartson依赖于版本0.9,mongo_dart对当前版本0.11你可以问dartson作者,他们对logging
的当前版本有一些考虑
同时您可以尝试将dependency_ovverride添加到pubspec中。当我将ovverride添加到pubspec时,它适用于我
name: test_pubspec
dependencies:
json_object: "1.0.19"
mongo_dart: "0.2.4"
connection_pool: "0.1.0+2"
dartson: "0.2.4"
guinness: "0.1.17"
html: "0.12.2"
shelf: '>=0.6.2 <0.7.0'
shelf_static: "0.2.2"
shelf_route: "0.14.0"
dependency_overrides:
logging: '^0.11.0'