srawlins / timezone

Time zone database and time zone aware DateTime object for Dart.
BSD 2-Clause "Simplified" License
102 stars 54 forks source link

Fix pubspec dev dependencies #19

Closed tomaine2002 closed 5 years ago

tomaine2002 commented 5 years ago

The package depended on the browser package (which has been discontinued, and doesn't have Dart 2 support). It also depended on an old version of the test package that didn't support Dart 2.

This change removed the browser dependency (I don't see where this was used. I suspect it was unused). It also switches to a newer version of the test package.

srawlins commented 5 years ago

Thanks!