jsonpath/Cargo.toml

33 lines
965 B
TOML
Raw Normal View History

2018-12-26 14:45:31 +09:00
[package]
2019-03-06 18:44:39 +09:00
name = "jsonpath_lib"
2020-04-14 11:53:34 +09:00
version = "0.2.5"
2019-03-05 23:48:27 +09:00
authors = ["Changseok Han <freestrings@gmail.com>"]
2018-12-26 14:45:31 +09:00
2019-06-24 14:20:29 +09:00
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"
2019-03-06 23:24:08 +09:00
readme = "README.md"
2020-04-14 11:53:34 +09:00
keywords = ["jsonpath", "json", "webassembly", "lua", "query"]
categories = ['wasm', "parser-implementations", "api-bindings"]
2019-03-06 23:24:08 +09:00
repository = "https://github.com/freestrings/jsonpath"
2020-04-14 11:53:34 +09:00
documentation = "https://docs.rs/jsonpath_lib/0.2.5/jsonpath_lib"
2019-03-06 23:24:08 +09:00
license = "MIT"
2019-03-06 23:50:10 +09:00
[badges]
travis-ci = { repository = "freestrings/jsonpath", branch = "master" }
2019-03-06 23:24:08 +09:00
2018-12-26 14:45:31 +09:00
[dependencies]
2019-03-26 18:10:03 +09:00
log = "0.4"
2020-01-07 00:07:00 +09:00
env_logger = "0.7"
2019-03-24 21:18:58 +09:00
serde = { version = "1.0", features = ["derive"] }
2019-02-25 14:51:28 +09:00
serde_json = { version = "1.0", features = ["preserve_order"] }
2019-06-24 14:20:29 +09:00
array_tool = "1.0.3"
2019-02-19 08:20:59 +09:00
2019-02-26 23:04:04 +09:00
[lib]
2019-03-06 18:44:39 +09:00
name = "jsonpath_lib"
2019-03-11 17:35:15 +09:00
path = "src/lib.rs"
2019-08-23 11:53:03 +09:00
crate-type = ["cdylib", "rlib"]
2019-03-11 17:35:15 +09:00
2020-04-14 11:53:34 +09:00
#[profile.release]
2019-06-02 22:03:35 +09:00
#debug = true
2019-08-23 11:53:03 +09:00
#lto = false