jsonpath/lua/Cargo.toml

15 lines
343 B
TOML
Raw Normal View History

2019-08-23 00:00:01 +09:00
[package]
2019-08-23 11:53:03 +09:00
name = "jsonpath_lua"
2019-08-23 00:00:01 +09:00
version = "0.1.0"
authors = ["Changseok Han <freestrings@gmail.com>"]
license = "MIT"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
2019-08-23 11:53:03 +09:00
jsonpath_lib = { path = "../" }
2019-08-23 00:00:01 +09:00
[[bin]]
2019-08-23 11:53:03 +09:00
name = "bench"
path = "bench_lua_vs_rust/example.rs"