[package] name = "partiql-logical" description = "PartiQL Logical Model" authors.workspace = true homepage.workspace = true repository.workspace = true license = "Apache-2.0" readme = "../README.md" keywords = ["sql", "parser", "query", "compilers", "interpreters"] categories = ["database", "compilers"] exclude = [ "**/.git/**", "**/.github/**", "**/.travis.yml", "**/.appveyor.yml", ] version.workspace = true edition.workspace = true [lib] bench = false [dependencies] partiql-value = { path = "../partiql-value", version = "0.11.*" } partiql-common = { path = "../partiql-common", version = "0.11.*" } ordered-float = "4" itertools = "0.13" unicase = "2.7" serde = { version = "1", features = ["derive"], optional = true } [features] default = [] serde = [ "dep:serde", "ordered-float/serde" ]