diff --git a/pubspec.yaml b/pubspec.yaml index cc2e0a5..5c6f7a6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,12 +1,11 @@ name: front_matter version: 1.1.0 description: A front matter parser that extracts YAML metadata from the start of a file or string. -author: izolate homepage: https://github.com/izolate/front-matter documentation: https://github.com/izolate/front-matter/blob/master/README.md environment: sdk: '>=2.0.0 <3.0.0' dependencies: - yaml: ^2.1.15 + yaml: ^3.1.1 dev_dependencies: - test: ^1.6.2 + test: ^1.21.6 diff --git a/test/front_matter_test.dart b/test/front_matter_test.dart index e2bd7f2..8cccd25 100644 --- a/test/front_matter_test.dart +++ b/test/front_matter_test.dart @@ -1,6 +1,5 @@ import 'package:test/test.dart'; import 'package:front_matter/front_matter.dart' as fm; -import 'package:front_matter/src/front_matter.dart'; import 'package:front_matter/src/front_matter_document.dart'; import 'package:front_matter/src/front_matter_exception.dart';