Bump up 0.2.5

This commit is contained in:
freestrings 2020-04-14 11:53:34 +09:00
parent c1d4c78da9
commit 55e8088111
3 changed files with 7 additions and 8 deletions

View File

@ -1,19 +1,18 @@
[package] [package]
name = "jsonpath_lib" name = "jsonpath_lib"
version = "0.2.4" version = "0.2.5"
authors = ["Changseok Han <freestrings@gmail.com>"] authors = ["Changseok Han <freestrings@gmail.com>"]
description = "It is JsonPath engine written in Rust. it provide a similar API interface in Webassembly and Javascript too. - Webassembly Demo: https://freestrings.github.io/jsonpath" description = "It is JsonPath engine written in Rust. it provide a similar API interface in Webassembly and Javascript too. - Webassembly Demo: https://freestrings.github.io/jsonpath"
readme = "README.md" readme = "README.md"
keywords = ["jsonpath", "json", "webassembly", "nodejs", "query"] keywords = ["jsonpath", "json", "webassembly", "lua", "query"]
categories = ['wasm', "parser-implementations", "api-bindings"]
repository = "https://github.com/freestrings/jsonpath" repository = "https://github.com/freestrings/jsonpath"
documentation = "https://docs.rs/jsonpath_lib/0.2.4/jsonpath_lib" documentation = "https://docs.rs/jsonpath_lib/0.2.5/jsonpath_lib"
license = "MIT" license = "MIT"
categories = ["parsing"]
[badges] [badges]
travis-ci = { repository = "freestrings/jsonpath", branch = "master" } travis-ci = { repository = "freestrings/jsonpath", branch = "master" }
@ -29,6 +28,6 @@ name = "jsonpath_lib"
path = "src/lib.rs" path = "src/lib.rs"
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]
[profile.release] #[profile.release]
#debug = true #debug = true
#lto = false #lto = false

View File

@ -5,7 +5,7 @@
![npm](https://img.shields.io/npm/v/jsonpath-wasm.svg?label=npm%20%60jsonpath-wasm%60) ![npm](https://img.shields.io/npm/v/jsonpath-wasm.svg?label=npm%20%60jsonpath-wasm%60)
![Codecov](https://img.shields.io/codecov/c/github/freestrings/jsonpath.svg?token=92c41b4e7cf04a9cbebc08f68c5da615) ![Codecov](https://img.shields.io/codecov/c/github/freestrings/jsonpath.svg?token=92c41b4e7cf04a9cbebc08f68c5da615)
`Rust` 버전 [JsonPath](https://goessner.net/articles/JsonPath/) 구현이다. `Webassembly``Javascript`에서도 유사한 API 인터페이스를 제공 한다. `Rust` 버전 [JsonPath](https://goessner.net/articles/JsonPath/) 구현으로 `Webassembly``Javascript`에서도 유사한 API 인터페이스를 제공 한다.
It is JsonPath [JsonPath](https://goessner.net/articles/JsonPath/) engine written in `Rust`. it provide a similar API interface in `Webassembly` and` Javascript` too. It is JsonPath [JsonPath](https://goessner.net/articles/JsonPath/) engine written in `Rust`. it provide a similar API interface in `Webassembly` and` Javascript` too.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "jsonpath-wasm" name = "jsonpath-wasm"
version = "0.2.4" version = "0.2.5"
authors = ["Changseok Han <freestrings@gmail.com>"] authors = ["Changseok Han <freestrings@gmail.com>"]
description = "It is Webassembly version of jsonpath_lib that is JsonPath engine written in Rust - Demo: https://freestrings.github.io/jsonpath" description = "It is Webassembly version of jsonpath_lib that is JsonPath engine written in Rust - Demo: https://freestrings.github.io/jsonpath"
keywords = ["jsonpath", "json", "webassembly", "parsing", "rust"] keywords = ["jsonpath", "json", "webassembly", "parsing", "rust"]