jsonpath/Cargo.toml

37 lines
942 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"
2019-05-16 14:14:09 +09:00
version = "0.1.13"
2019-03-05 23:48:27 +09:00
authors = ["Changseok Han <freestrings@gmail.com>"]
2018-12-26 14:45:31 +09:00
2019-04-13 22:27:33 +09:00
description = "It is JsonPath engine written in Rust. it provide a similar API interface in Webassembly and Javascript also. - Webassembly Demo: https://freestrings.github.io/jsonpath"
2019-03-06 23:24:08 +09:00
readme = "README.md"
keywords = ["jsonpath", "json", "webassembly", "nodejs", "javascript"]
2019-03-06 23:24:08 +09:00
repository = "https://github.com/freestrings/jsonpath"
documentation = "https://docs.rs/jsonpath_lib/0.1.0/jsonpath_lib"
license = "MIT"
2019-03-06 23:50:10 +09:00
categories = ["parsing"]
2019-04-13 22:27:33 +09:00
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"
env_logger = "0.6.0"
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-02-25 16:43:46 +09:00
indexmap = "1.0.2"
2019-02-19 08:20:59 +09:00
[dev-dependencies]
2019-02-25 14:51:28 +09:00
bencher = "0.1.5"
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"
[profile.release]
2019-05-26 23:30:01 +09:00
debug = true
2019-03-14 22:30:42 +09:00
#lto = false