-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
63 additions
and
37 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "jsonpath" | ||
description = "The library provides the basic functionality to find the set of the data according to the filtering query." | ||
version = "0.2.6" | ||
authors = ["BorisZhguchev <[email protected]>"] | ||
edition = "2018" | ||
license-file = "LICENSE" | ||
homepage = "https://github.com/besok/jsonpath-rust" | ||
repository = "https://github.com/besok/jsonpath-rust" | ||
readme = "README.md" | ||
keywords = ["json", "json-path", "jsonpath", "jsonpath-rust", "xpath"] | ||
categories = ["development-tools", "parsing", "text-processing"] | ||
|
||
[dependencies] | ||
dozer-types = { path = "../../dozer-types" } | ||
regex = "1" | ||
pest = "2.0" | ||
pest_derive = "2.0" | ||
|
||
[dev-dependencies] | ||
lazy_static = "1.0" |
File renamed without changes.
8 changes: 3 additions & 5 deletions
8
dozer-sql/src/jsonpath/mod.rs → dozer-sql/jsonpath/src/lib.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
dozer-sql/src/jsonpath/parser/model.rs → dozer-sql/jsonpath/src/parser/model.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
dozer-sql/src/jsonpath/parser/parser.rs → dozer-sql/jsonpath/src/parser/parser.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
dozer-sql/src/jsonpath/path/index.rs → dozer-sql/jsonpath/src/path/index.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
dozer-sql/src/jsonpath/path/mod.rs → dozer-sql/jsonpath/src/path/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
dozer-sql/src/jsonpath/path/top.rs → dozer-sql/jsonpath/src/path/top.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
extern crate core; | ||
|
||
// Re-export sqlparser | ||
pub use sqlparser; | ||
|
||
pub mod jsonpath; | ||
pub mod pipeline; | ||
|
||
#[macro_use] | ||
extern crate pest_derive; | ||
extern crate pest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters