mirror of https://github.com/AMT-Cheif/drift.git
RELEASE 1.5
- Analyzed custom queries - Better callbacks - Update companions
This commit is contained in:
parent
d15db1a199
commit
2487c64c08
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
| Core API | Flutter | Generator |
|
| Core API | Flutter | Generator |
|
||||||
|:-------------:|:-------------:|:-----:|
|
|:-------------:|:-------------:|:-----:|
|
||||||
| [![Generator version](https://img.shields.io/pub/v/moor.svg)](https://pub.dartlang.org/packages/moor) | [![Flutter version](https://img.shields.io/pub/v/moor_flutter.svg)](https://pub.dartlang.org/packages/moor_flutter) | [![Generator version](https://img.shields.io/pub/v/moor_generator.svg)](https://pub.dartlang.org/packages/moor_generator) |
|
| [![Generator version](https://img.shields.io/pub/v/moor.svg)](https://pub.dev/packages/moor) | [![Flutter version](https://img.shields.io/pub/v/moor_flutter.svg)](https://pub.dev/packages/moor_flutter) | [![Generator version](https://img.shields.io/pub/v/moor_generator.svg)](https://pub.dev/packages/moor_generator) |
|
||||||
|
|
||||||
Moor is an easy to use, reactive persistence library for Flutter apps. Define your database tables in pure Dart and
|
Moor is an easy to use, reactive persistence library for Flutter apps. Define your database tables in pure Dart and
|
||||||
enjoy a fluent query API, auto-updating streams and more!
|
enjoy a fluent query API, auto-updating streams and more!
|
||||||
|
@ -15,5 +15,6 @@ For more information, check out the [docs](https://moor.simonbinder.eu/).
|
||||||
-----
|
-----
|
||||||
|
|
||||||
The `sqlparser` directory contains an sql parser and static analyzer, written in pure Dart.
|
The `sqlparser` directory contains an sql parser and static analyzer, written in pure Dart.
|
||||||
At the moment, it can only parse a subset of sqlite, but most select statements are
|
At the moment, it can only parse a subset of sqlite, but most commonly used statements
|
||||||
supported.
|
(except for inserts) are supported. Its on pub at
|
||||||
|
[![sqlparser](https://img.shields.io/pub/v/sqlparser.svg)](https://pub.dev/packages/sqlparser)
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor
|
name: moor
|
||||||
description: Moor is a safe and reactive persistence library for Dart applications
|
description: Moor is a safe and reactive persistence library for Dart applications
|
||||||
version: 1.4.0+1
|
version: 1.5.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor_flutter
|
name: moor_flutter
|
||||||
description: Flutter implementation of moor, a safe and reactive persistence library for Dart applications
|
description: Flutter implementation of moor, a safe and reactive persistence library for Dart applications
|
||||||
version: 1.4.0
|
version: 1.5.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor_generator
|
name: moor_generator
|
||||||
description: Dev-dependency to generate table and dataclasses together with the moor package.
|
description: Dev-dependency to generate table and dataclasses together with the moor package.
|
||||||
version: 1.4.0
|
version: 1.5.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
@ -21,8 +21,7 @@ dependencies:
|
||||||
build_config: '>=0.3.1 <1.0.0'
|
build_config: '>=0.3.1 <1.0.0'
|
||||||
moor: ^1.4.0
|
moor: ^1.4.0
|
||||||
meta: '>= 1.0.0 <2.0.0'
|
meta: '>= 1.0.0 <2.0.0'
|
||||||
sqlparser:
|
sqlparser: ^0.1.0
|
||||||
path: ../sqlparser
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
test: ^1.6.0
|
test: ^1.6.0
|
||||||
test_api: ^0.2.0
|
test_api: ^0.2.0
|
||||||
|
@ -32,5 +31,7 @@ dev_dependencies:
|
||||||
build_test: '>=0.10.0 <0.11.0'
|
build_test: '>=0.10.0 <0.11.0'
|
||||||
|
|
||||||
dependency_overrides:
|
dependency_overrides:
|
||||||
|
sqlparser:
|
||||||
|
path: ../sqlparser
|
||||||
moor:
|
moor:
|
||||||
path: ../moor
|
path: ../moor
|
||||||
|
|
Loading…
Reference in New Issue