export quiver hash
This commit is contained in:
parent
a84fc2e0b3
commit
cbda457e30
8 changed files with 14 additions and 3 deletions
1
angel_serialize/.gitignore
vendored
1
angel_serialize/.gitignore
vendored
|
@ -2,6 +2,7 @@
|
|||
|
||||
# Files and directories created by pub
|
||||
../.packages
|
||||
.packages
|
||||
.pub/
|
||||
build/
|
||||
# If you're building an application, you may want to check-in your pubspec.lock
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# 2.1.0
|
||||
* Export `hashObjects`.
|
||||
|
||||
# 2.0.4+1
|
||||
* Allow Dart 1 for this annotation-only package.
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
export 'package:quiver_hashcode/hashcode.dart' show hashObjects;
|
||||
|
||||
/// Excludes a field from being excluded.
|
||||
class Exclude {
|
||||
final bool canSerialize;
|
||||
|
|
0
angel_serialize/mono_pkg.yaml
Normal file
0
angel_serialize/mono_pkg.yaml
Normal file
|
@ -1,7 +1,9 @@
|
|||
name: angel_serialize
|
||||
version: 2.0.4+1
|
||||
version: 2.1.0
|
||||
description: Static annotations powering Angel model serialization. Combine with angel_serialize_generator for flexible modeling.
|
||||
author: Tobe O <thosakwe@gmail.com>
|
||||
homepage: https://github.com/angel-dart/serialize
|
||||
environment:
|
||||
sdk: '>=1.8.0 <3.0.0'
|
||||
sdk: '>=2.0.0-dev <3.0.0'
|
||||
dependencies:
|
||||
quiver_hashcode: ^2.0.0
|
||||
|
|
|
@ -27,5 +27,8 @@ targets:
|
|||
dependencies:
|
||||
- ":_book"
|
||||
sources:
|
||||
- "bin/**"
|
||||
- "lib/**"
|
||||
- "web/**"
|
||||
- "test/models/author.dart"
|
||||
- "test/models/game_pad.dart"
|
||||
|
|
0
angel_serialize_generator/mono_pkg.yaml
Normal file
0
angel_serialize_generator/mono_pkg.yaml
Normal file
|
@ -16,5 +16,5 @@ dependencies:
|
|||
source_gen: ^0.9.0
|
||||
quiver: ^2.0.0
|
||||
dev_dependencies:
|
||||
build_runner: ^0.10.0
|
||||
build_runner: ^1.0.0
|
||||
test: ^1.0.0
|
Loading…
Reference in a new issue