mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-04-25 17:32:15 +00:00
패키지명 변경
This commit is contained in:
parent
175a015eb2
commit
163cfc469e
@ -1,5 +1,5 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "jsonpath"
|
name = "jsonpath_lib"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Changseok Han <freestrings@gmail.com>"]
|
authors = ["Changseok Han <freestrings@gmail.com>"]
|
||||||
|
|
||||||
@ -14,5 +14,5 @@ indexmap = "1.0.2"
|
|||||||
bencher = "0.1.5"
|
bencher = "0.1.5"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "jsonpath"
|
name = "jsonpath_lib"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
@ -1,4 +1,4 @@
|
|||||||
# Jsonpath
|
# Jsonpath Library
|
||||||
|
|
||||||
[JsonPath](https://goessner.net/articles/JsonPath/) Rust 구현
|
[JsonPath](https://goessner.net/articles/JsonPath/) Rust 구현
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//!
|
//!
|
||||||
//! # Example
|
//! # Example
|
||||||
//! ```
|
//! ```
|
||||||
//! extern crate jsonpath;
|
//! extern crate jsonpath_lib as jsonpath;
|
||||||
//! #[macro_use]
|
//! #[macro_use]
|
||||||
//! extern crate serde_json;
|
//! extern crate serde_json;
|
||||||
//!
|
//!
|
||||||
|
@ -15,7 +15,7 @@ wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
|
|||||||
console_error_panic_hook = { version = "0.1.1", optional = true }
|
console_error_panic_hook = { version = "0.1.1", optional = true }
|
||||||
wee_alloc = { version = "0.4.2", optional = true }
|
wee_alloc = { version = "0.4.2", optional = true }
|
||||||
|
|
||||||
jsonpath = {path = "../"}
|
jsonpath_lib = {path = "../"}
|
||||||
serde_json = { version = "1.0", features = ["preserve_order"] }
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -2,7 +2,7 @@ extern crate cfg_if;
|
|||||||
extern crate wasm_bindgen;
|
extern crate wasm_bindgen;
|
||||||
|
|
||||||
extern crate serde_json;
|
extern crate serde_json;
|
||||||
extern crate jsonpath;
|
extern crate jsonpath_lib as jsonpath;
|
||||||
|
|
||||||
mod utils;
|
mod utils;
|
||||||
|
|
||||||
|
2
wasm/www/package-lock.json
generated
2
wasm/www/package-lock.json
generated
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "rs-jsonpath",
|
"name": "jsonpath-wasm",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "rs-jsonpath",
|
"name": "jsonpath-wasm",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -14,7 +14,8 @@
|
|||||||
"webassembly",
|
"webassembly",
|
||||||
"wasm",
|
"wasm",
|
||||||
"rust",
|
"rust",
|
||||||
"webpack"
|
"webpack",
|
||||||
|
"jsonpath"
|
||||||
],
|
],
|
||||||
"author": "Changseok Han <freestrings@gmail.com>",
|
"author": "Changseok Han <freestrings@gmail.com>",
|
||||||
"license": "(MIT OR Apache-2.0)",
|
"license": "(MIT OR Apache-2.0)",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user