mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-03-15 06:50:50 +00:00
34 lines
898 B
TOML
34 lines
898 B
TOML
[package]
|
|
name = "jsonpath_lib"
|
|
version = "0.2.3"
|
|
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"
|
|
readme = "README.md"
|
|
|
|
keywords = ["jsonpath", "json", "webassembly", "nodejs", "query"]
|
|
|
|
repository = "https://github.com/freestrings/jsonpath"
|
|
documentation = "https://docs.rs/jsonpath_lib/0.1.0/jsonpath_lib"
|
|
license = "MIT"
|
|
|
|
categories = ["parsing"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "freestrings/jsonpath", branch = "master" }
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
array_tool = "1.0.3"
|
|
|
|
[lib]
|
|
name = "jsonpath_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[profile.release]
|
|
#debug = true
|
|
#lto = false
|