Skip to content

Commit 45b15f9

Browse files
authored
rename JsonPathCalculator to jsonpath_rs
1 parent 21cb901 commit 45b15f9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
[![license](https://img.shields.io/github/license/RedisJSON/JsonPathCalculator.svg)](https://github.com/RedisJSON/JsonPathCalculator/blob/master/LICENSE)
2-
[![GitHub issues](https://img.shields.io/github/release/RedisJSON/JsonPathCalculator.svg)](https://github.com/RedisJSON/JsonPathCalculator/releases/latest)
3-
[![Rust](https://github.com/RedisJSON/JsonPathCalculator/actions/workflows/rust.yml/badge.svg)](https://github.com/RedisJSON/JsonPathCalculator/actions/workflows/rust.yml)
4-
[![crates.io](https://img.shields.io/crates/v/JsonPathCalculator.svg)](https://crates.io/crates/JsonPathCalculator)
1+
[![license](https://img.shields.io/github/license/RedisJSON/jsonpath_rs.svg)](https://github.com/RedisJSON/jsonpath_rs/blob/master/LICENSE)
2+
[![GitHub issues](https://img.shields.io/github/release/RedisJSON/jsonpath_rs.svg)](https://github.com/RedisJSON/jsonpath_rs/releases/latest)
3+
[![Rust](https://github.com/RedisJSON/jsonpath_rs/actions/workflows/rust.yml/badge.svg)](https://github.com/RedisJSON/jsonpath_rs/actions/workflows/rust.yml)
4+
[![crates.io](https://img.shields.io/crates/v/jsonpath_rs.svg)](https://crates.io/crates/jsonpath_rs)
55

6-
# JsonPathCalculator
7-
Json path calculator library for rust. The idea behind this library is that it can operate on any json representation as long as it implements the [`SelectValue`](src/select_value.rs) triat. The library has an implementation for [serde_json value](https://docs.serde.rs/serde_json/value/enum.Value.html) and [ivalue](https://docs.rs/tch/0.1.1/tch/enum.IValue.html).
6+
# jsonpath_rs
7+
A JSONPath library for rust. The idea behind this library is that it can operate on any json representation as long as it implements the [`SelectValue`](src/select_value.rs) triat. The library has an implementation for [serde_json value](https://docs.serde.rs/serde_json/value/enum.Value.html) and [ivalue](https://docs.rs/tch/0.1.1/tch/enum.IValue.html).
88

99
### Getting Started
1010
Add the following to your cargo.toml
1111

1212
```rust
1313
[dependencies]
14-
jsonpath_rs = { git = "https://github.com/RedisJSON/JsonPathCalculator.git", branch = "master" }
14+
jsonpath_rs = { git = "https://github.com/RedisJSON/jsonpath_rs.git", branch = "master" }
1515
```
1616

1717
Usage example:

0 commit comments

Comments
 (0)