redstone-dart / redstone

A metadata driven microframework for Dart.
http://redstone-dart.github.io/redstone
MIT License
342 stars 42 forks source link

dependency issue on redstone 0.6.0 #140

Closed vimalraj-a closed 8 years ago

vimalraj-a commented 8 years ago

I am getting following error while pub get / pub upgrade

Package di has no versions that match >=3.3.1 <4.0.0 derived from: redstone 0.6.0+1 depends on version >=3.3.1 <4.0.0

Pacane commented 8 years ago

Can you show us the complete pubspec or at least the dependencies section?

vimalraj-a commented 8 years ago

name: GISServer version: 0.0.1 description: GIS API Server environment: sdk: '>=1.0.0 <2.0.0' dependencies: GISCommon: path: '../GISCommon' redstone: "^0.6.0+1" dev_dependencies: test: '>=0.12.0 <0.13.0'

Pacane commented 8 years ago

Are you importing the di package from somewhere else? I suspect from GISCommon. If so, what version are you importing?

vimalraj-a commented 8 years ago

I am not importing di package from GISCommon. But I have dson: "0.1.7" which is conflicting with redstone's other dependency.

After removing dson from GISCommon This is resoved.

Thanks for your support to identify the root cause.