-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
259 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
## [0.0.1] - TODO: Add release date. | ||
## [2.0.1] | ||
|
||
* TODO: Describe initial release. | ||
* Initial public version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
TODO: Add your license here. | ||
MIT License | ||
|
||
Copyright (c) 2022 Evgeniy Safronov | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
# dart_json | ||
# Dart JSON | ||
|
||
JSON wrapper | ||
A library intended to bring manual JSON serialization to the Dart projects of all scales. | ||
|
||
Features: | ||
- Human readable and maintainable API | ||
- Strict compile-time and runtime types checks | ||
- Nested objects parsing | ||
- Lists of objects parsing | ||
- Exceptions that include a JSON key path with an error | ||
- Sound null safety support | ||
|
||
## Installing | ||
Add this to your package's pubspec.yaml file: | ||
```yaml | ||
dependencies: | ||
dart_json: | ||
git: | ||
url: git://github.com/npu3pak/dart-lib-json.git | ||
dart_json: ^2.0.1 | ||
``` | ||
Install dependencies: | ||
|
@@ -311,10 +317,10 @@ try { | |
|
||
## Authors | ||
|
||
Evgeniy Safronov (evsafronov.personal@yandex.ru) | ||
Evgeniy Safronov (evsafronov.personal@gmail.com) | ||
|
||
Alexander Smetannikov ([email protected]) | ||
|
||
## License | ||
|
||
dart_json is available under the MIT license. See the LICENSE file for more info. | ||
Dart JSON is available under the MIT license. See the LICENSE file for more info. |
Oops, something went wrong.