diff --git a/Cargo.lock b/Cargo.lock index a841ab5e10..5d4964fc80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2787,7 +2787,6 @@ dependencies = [ "dozer-types", "enum_dispatch", "half 2.3.1", - "jsonpath-rust", "like", "linked-hash-map", "metrics", @@ -4249,18 +4248,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "jsonpath-rust" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b55563e28c54b1cc0d7eb92475cf9e210cd58e2fce9fabbc0cb5bb1136b4ab3" -dependencies = [ - "pest", - "pest_derive", - "regex", - "serde_json", -] - [[package]] name = "jsonrpc-core" version = "18.0.0" diff --git a/dozer-sql/Cargo.toml b/dozer-sql/Cargo.toml index 95679dc0f3..604519c5e2 100644 --- a/dozer-sql/Cargo.toml +++ b/dozer-sql/Cargo.toml @@ -7,14 +7,13 @@ authors = ["getdozer/dozer-dev"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dozer-types = {path = "../dozer-types"} -dozer-storage = {path = "../dozer-storage"} -dozer-core = {path = "../dozer-core"} -dozer-tracing = {path = "../dozer-tracing"} +dozer-types = { path = "../dozer-types" } +dozer-storage = { path = "../dozer-storage" } +dozer-core = { path = "../dozer-core" } +dozer-tracing = { path = "../dozer-tracing" } ahash = "0.8.3" enum_dispatch = "0.3.11" -jsonpath-rust = "0.3.1" like = "0.3.1" linked-hash-map = { version = "0.5.6", features = ["serde_impl"] } metrics = "0.21.0" @@ -23,8 +22,8 @@ num-traits = "0.2.15" pest = "2.6.0" pest_derive = "2.5.6" regex = "1.8.1" -sqlparser = {git = "https://github.com/getdozer/sqlparser-rs.git" } -uuid = {version = "1.3.0", features = ["v1", "v4", "fast-rng"]} +sqlparser = { git = "https://github.com/getdozer/sqlparser-rs.git" } +uuid = { version = "1.3.0", features = ["v1", "v4", "fast-rng"] } bigdecimal = { version = "0.3", features = ["serde"], optional = true } ort = { version = "1.15.2", optional = true } ndarray = { version = "0.15", optional = true }