jsonpath/wasm/Cargo.toml

33 lines
840 B
TOML
Raw Normal View History

2019-03-03 00:33:27 +09:00
[package]
2019-03-04 23:07:09 +09:00
name = "jsonpath-wasm"
2019-03-06 23:50:10 +09:00
version = "0.1.1"
2019-03-05 23:48:27 +09:00
authors = ["Changseok Han <freestrings@gmail.com>"]
2019-03-03 00:33:27 +09:00
2019-03-06 23:50:10 +09:00
description = "JsonPath Webassembly version compiled by Rust - Demo: https://freestrings.github.io/jsonpath"
2019-03-06 23:24:08 +09:00
keywords = ["library", "jsonpath", "json", "webassembly"]
repository = "https://github.com/freestrings/jsonpath"
license = "MIT"
2019-03-03 00:33:27 +09:00
[lib]
crate-type = ["cdylib", "rlib"]
[features]
2019-03-07 18:44:06 +09:00
default = ["console_error_panic_hook", "wee_alloc"]
2019-03-03 00:33:27 +09:00
[dependencies]
cfg-if = "0.1.2"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
console_error_panic_hook = { version = "0.1.1", optional = true }
wee_alloc = { version = "0.4.2", optional = true }
2019-03-06 18:44:39 +09:00
jsonpath_lib = {path = "../"}
2019-03-03 00:33:27 +09:00
serde_json = { version = "1.0", features = ["preserve_order"] }
[dev-dependencies]
wasm-bindgen-test = "0.2"
[profile.release]
opt-level = "s"