File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 2
2
name = " qt-json-rs"
3
3
version = " 0.0.0"
4
4
edition = " 2021"
5
- categories = [" json " , " qt " ]
5
+ categories = [" data-structures " ]
6
6
author = " Dominic Heun <dominic.heun@gmx.net>"
7
7
license-file = " LICENSE"
8
8
description = " JSON library for QT"
9
- repository = " https://github.com/thedomen /qt-json-rs"
9
+ repository = " https://github.com/thedome /qt-json-rs"
10
10
homepage = " https://github.com/thedome/qt-json-rs"
11
11
exclude = [" .idea" ," .github" ]
12
12
Original file line number Diff line number Diff line change 3
3
4
4
[ ![ codecov] ( https://codecov.io/gh/TheDome/qt-json-rs/branch/develop/graph/badge.svg?token=7MIOMJ88B1 )] ( https://codecov.io/gh/TheDome/qt-json-rs )
5
5
6
- A simple parser for the Internal QT Binary JSON data format.
6
+ A simple parser for the Internal Qt Binary JSON data format.
7
7
8
8
This parser will transform the popular
9
9
[ QTBinary JSON] ( https://doc.qt.io/qt-6.2/qbinaryjson.html#toBinaryData )
10
10
format into usable format for rust applications.
11
11
12
12
## Use
13
13
14
- Simply provida a binary encoded JSON Array to the function and it will parse it into an
14
+ Simply provide a binary encoded JSON Array to the function and it will parse it into an
15
15
internal JSON structure:
16
16
17
17
``` rust
@@ -33,7 +33,7 @@ fn main(){
33
33
34
34
## Disclaimer
35
35
36
- This library has been widely created by looking at the QT source code and performing reverse
36
+ This library has been created by looking at the Qt source code and performing reverse
37
37
engineering.
38
- There is a possibility that the code will not work with other Version of QT JSON documents.
38
+ There is a possibility that the code will not work with other Version of Qt JSON documents.
39
39
Any help with this library is welcome.
Original file line number Diff line number Diff line change 1
1
//!
2
2
//! [](https://codecov.io/gh/TheDome/qt-json-rs)
3
3
//!
4
- //! A simple parser for the Internal QT Binary JSON data format.
4
+ //! A simple parser for the Internal Qt Binary JSON data format.
5
5
//!
6
6
//! This parser will transform the popular
7
7
//! [QTBinary JSON](https://doc.qt.io/qt-6.2/qbinaryjson.html#toBinaryData)
8
8
//! format into usable format for rust applications.
9
9
//!
10
10
//! # Use
11
11
//!
12
- //! Simply provida a binary encoded JSON Array to the function and it will parse it into an
12
+ //! Simply provide a binary encoded JSON Array to the function and it will parse it into an
13
13
//! internal JSON structure:
14
14
//!
15
15
//! ```rust
31
31
//!
32
32
//! # Disclaimer
33
33
//!
34
- //! This library has been widely created by looking at the QT source code and performing reverse
34
+ //! This library has been created by looking at the Qt source code and performing reverse
35
35
//! engineering.
36
- //! There is a possibility that the code will not work with other Version of QT JSON documents.
36
+ //! There is a possibility that the code will not work with other Version of Qt JSON documents.
37
37
//! Any help with this library is welcome.
38
38
39
39
extern crate log;
You can’t perform that action at this time.
0 commit comments