2019-03-14 22:30:42 +09:00
|
|
|
[package]
|
2019-03-28 18:39:59 +09:00
|
|
|
name = "jsonpath4nodejs"
|
2019-06-24 12:17:54 +09:00
|
|
|
version = "0.2.3"
|
2019-03-14 22:30:42 +09:00
|
|
|
authors = ["Changseok Han <freestrings@gmail.com>"]
|
2019-03-28 18:39:59 +09:00
|
|
|
description = "jsonpath_lib bindings for nodejs"
|
|
|
|
keywords = ["library", "jsonpath", "json", "nodejs"]
|
2019-03-14 22:30:42 +09:00
|
|
|
repository = "https://github.com/freestrings/jsonpath"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
build = "build.rs"
|
|
|
|
exclude = ["artifacts.json", "index.node"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
neon-build = "0.2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-19 16:17:58 +09:00
|
|
|
jsonpath_lib = "0.2.2"
|
2019-06-11 16:12:40 +09:00
|
|
|
#jsonpath_lib = { path = "../../" }
|
2019-03-14 22:30:42 +09:00
|
|
|
neon = "0.2.0"
|
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
|
|
|
|
|
|
[lib]
|
2019-03-28 18:39:59 +09:00
|
|
|
name = "jsonpath4nodejs"
|
2019-03-14 22:30:42 +09:00
|
|
|
crate-type = ["dylib"]
|