Attempting to view a tutorial at the following links:
http://blog.dartwatch.com/2012/03/building-client-server-dart-app-part-1.html http://blog.dartwatch.com/2012/03/building-client-server-dart -app-part-2.html
Here is my pubspec.yaml :
name: myapp description: A sample application dependencies: log4dart: any mongo_dart: 0.0.1 unittest: { sdk: unittest } crimsonhttp: git: git:
And here is the error:
Dependency Resolution ...
The package 'log4dart' depends on both hosted sources and git '.
It doesn't matter if I add log4dart to pubspec (any) or not. The error is always the same. "log4dart" is anyway set from "mongo_dart". Does anyone have any experience with this particular error message? It seems to me like a circular addiction problem.
Solution Until βcrimsonhttpdβ fixes the problem or accepts my transfer request , use my repository from github with the following pubspec example:
name: myapp description: A sample application dependencies: mongo_dart: 0.0.1 unittest: { sdk: unittest } crimsonhttp: git: git:
source share