jsonpath/Cargo.toml

35 lines
787 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-03-11 17:35:15 +09:00
version = "0.1.3"
2019-03-05 23:48:27 +09:00
authors = ["Changseok Han <freestrings@gmail.com>"]
2018-12-26 14:45:31 +09:00
2019-03-07 14:40:02 +09:00
description = "JsonPath in Rust and Webassembly - Webassembly Demo: https://freestrings.github.io/jsonpath"
2019-03-06 23:24:08 +09:00
readme = "README.md"
keywords = ["library", "jsonpath", "json", "webassembly"]
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
[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]
log = "0.4"
env_logger = "0.6.0"
serde = "1.0"
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]
debug = true
lto = false