graphql-engine/v3/crates/compatibility/Cargo.toml
Tom Harding 7db107921e Factor out jsonpath into its own crate (#1101)
<!-- The PR description should answer 2 important questions: -->

### What

We're going to start carrying around more `JSONPath` values, so let's
tidy up.

<!-- What is this PR trying to accomplish (and why, if it's not
obvious)? -->

<!-- Consider: do we need to add a changelog entry? -->

<!-- Does this PR introduce new validation that might break old builds?
-->

<!-- Consider: do we need to put new checks behind a flag? -->

### How

I copied Dan's code.

<!-- How is it trying to accomplish it (what are the implementation
steps)? -->

V3_GIT_ORIGIN_REV_ID: 26aebcab7b40b672bac71d20aa3a072995519be3
2024-09-11 15:21:47 +00:00

32 lines
704 B
TOML

[package]
name = "compatibility"
version.workspace = true
edition.workspace = true
license.workspace = true
[lib]
bench = false
[dependencies]
jsonpath = { path = "../utils/jsonpath" }
open-dds = { path = "../open-dds" }
opendds-derive = { path = "../utils/opendds-derive" }
chrono = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_path_to_error = { workspace = true }
thiserror = { workspace = true }
[package.metadata.cargo-machete]
ignored = [
"jsonpath", # used by opendds-derive
"serde_json", # used by opendds-derive
"serde_path_to_error", # used by opendds-derive
]
[lints]
workspace = true