jsonpath/Cargo.toml
2019-03-06 23:45:52 +09:00

28 lines
687 B
TOML

[package]
name = "jsonpath_lib"
version = "0.1.0"
authors = ["Changseok Han <freestrings@gmail.com>"]
description = "JSONPath for Rust and Webassembly - Webassembly Demo: https://freestrings.github.io/jsonpath"
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"
license-file = "LICENSE"
[dependencies]
log = "0.4"
env_logger = "0.6.0"
serde = "1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
indexmap = "1.0.2"
[dev-dependencies]
bencher = "0.1.5"
[lib]
name = "jsonpath_lib"
path = "src/lib.rs"