패키지명 변경

This commit is contained in:
freestrings 2019-03-06 18:44:39 +09:00
parent 175a015eb2
commit 163cfc469e
7 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,5 @@
[package]
name = "jsonpath"
name = "jsonpath_lib"
version = "0.1.0"
authors = ["Changseok Han <freestrings@gmail.com>"]
@ -14,5 +14,5 @@ indexmap = "1.0.2"
bencher = "0.1.5"
[lib]
name = "jsonpath"
name = "jsonpath_lib"
path = "src/lib.rs"

View File

@ -1,4 +1,4 @@
# Jsonpath
# Jsonpath Library
[JsonPath](https://goessner.net/articles/JsonPath/) Rust 구현

View File

@ -2,7 +2,7 @@
//!
//! # Example
//! ```
//! extern crate jsonpath;
//! extern crate jsonpath_lib as jsonpath;
//! #[macro_use]
//! extern crate serde_json;
//!

View File

@ -15,7 +15,7 @@ wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
console_error_panic_hook = { version = "0.1.1", optional = true }
wee_alloc = { version = "0.4.2", optional = true }
jsonpath = {path = "../"}
jsonpath_lib = {path = "../"}
serde_json = { version = "1.0", features = ["preserve_order"] }
[dev-dependencies]

View File

@ -2,7 +2,7 @@ extern crate cfg_if;
extern crate wasm_bindgen;
extern crate serde_json;
extern crate jsonpath;
extern crate jsonpath_lib as jsonpath;
mod utils;

View File

@ -1,5 +1,5 @@
{
"name": "rs-jsonpath",
"name": "jsonpath-wasm",
"version": "0.1.0",
"lockfileVersion": 1,
"requires": true,

View File

@ -1,5 +1,5 @@
{
"name": "rs-jsonpath",
"name": "jsonpath-wasm",
"version": "0.1.0",
"main": "index.js",
"scripts": {
@ -14,7 +14,8 @@
"webassembly",
"wasm",
"rust",
"webpack"
"webpack",
"jsonpath"
],
"author": "Changseok Han <freestrings@gmail.com>",
"license": "(MIT OR Apache-2.0)",