mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-03-15 23:10:50 +00:00
15 lines
343 B
TOML
15 lines
343 B
TOML
[package]
|
|
name = "jsonpath_lua"
|
|
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"] }
|
|
jsonpath_lib = { path = "../" }
|
|
|
|
[[bin]]
|
|
name = "bench"
|
|
path = "bench_lua_vs_rust/example.rs"
|
|
|