jsonpath/nodejs/native/Cargo.toml

25 lines
613 B
TOML
Raw Normal View History

2019-03-14 22:30:42 +09:00
[package]
name = "jsonpath4nodejs"
2019-06-03 13:50:44 +09:00
version = "0.2.0"
2019-03-14 22:30:42 +09:00
authors = ["Changseok Han <freestrings@gmail.com>"]
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]
jsonpath_lib = "0.2.0"
#jsonpath_lib = { path = "../../" }
2019-03-14 22:30:42 +09:00
neon = "0.2.0"
neon-serde = "0.1.1"
serde_json = { version = "1.0", features = ["preserve_order"] }
[lib]
name = "jsonpath4nodejs"
2019-03-14 22:30:42 +09:00
crate-type = ["dylib"]