Skip to content

Commit

Permalink
v0.2.0 - add: delete, replace feature. resolve #1. remove: map function.
Browse files Browse the repository at this point in the history
  • Loading branch information
freestrings committed Jun 11, 2019
2 parents 9a35357 + 4af3194 commit ff52821
Show file tree
Hide file tree
Showing 45 changed files with 4,601 additions and 6,162 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.vscode
!.idea/runConfigurations/
/target/
Cargo.lock
Cargo.lock
callgrind.out.*
76 changes: 38 additions & 38 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,41 +36,41 @@ matrix:
script:
- cargo build --verbose --all
- cargo test --verbose --all
- language: node_js
os: linux
node_js:
- '11'
- '10'
- '9'
- '8'
before_install:
- curl https://sh.rustup.rs -sSf > /tmp/rustup.sh
- sh /tmp/rustup.sh -y
- export PATH="$HOME/.cargo/bin:$PATH"
- source "$HOME/.cargo/env"
- npm install -g neon-cli
- cd nodejs
- node -v
- npm -v
- npm install
script:
- npm test
- language: node_js
os: osx
node_js:
- '11'
- '10'
- '9'
- '8'
before_install:
- curl https://sh.rustup.rs -sSf > /tmp/rustup.sh
- sh /tmp/rustup.sh -y
- export PATH="$HOME/.cargo/bin:$PATH"
- source "$HOME/.cargo/env"
- npm install -g neon-cli
- cd nodejs
- node -v
- npm -v
- npm install
script:
- npm test
# - language: node_js
# os: linux
# node_js:
# - '11'
# - '10'
# - '9'
# - '8'
# before_install:
# - curl https://sh.rustup.rs -sSf > /tmp/rustup.sh
# - sh /tmp/rustup.sh -y
# - export PATH="$HOME/.cargo/bin:$PATH"
# - source "$HOME/.cargo/env"
# - npm install -g neon-cli
# - cd nodejs
# - node -v
# - npm -v
# - npm install
# script:
# - npm test
# - language: node_js
# os: osx
# node_js:
# - '11'
# - '10'
# - '9'
# - '8'
# before_install:
# - curl https://sh.rustup.rs -sSf > /tmp/rustup.sh
# - sh /tmp/rustup.sh -y
# - export PATH="$HOME/.cargo/bin:$PATH"
# - source "$HOME/.cargo/env"
# - npm install -g neon-cli
# - cd nodejs
# - node -v
# - npm -v
# - npm install
# script:
# - npm test
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonpath_lib"
version = "0.1.13"
version = "0.2.0"
authors = ["Changseok Han <[email protected]>"]

description = "It is JsonPath engine written in Rust. it provide a similar API interface in Webassembly and Javascript also. - Webassembly Demo: https://freestrings.github.io/jsonpath"
Expand All @@ -23,6 +23,7 @@ env_logger = "0.6.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
indexmap = "1.0.2"
array_tool = "~1.0.3"

[dev-dependencies]
bencher = "0.1.5"
Expand Down
Loading

0 comments on commit ff52821

Please sign in to comment.