[package]
name = "dsq-parser"
version = "0.1.0"
edition = "2021"
authors = ["Durable Programming LLC"]
description = "Parser for DSQ filter language that produces an AST"
license = "MIT OR Apache-2.0"
repository = "https://github.com/durableprogramming/dsq"
keywords = ["data", "jq", "query", "parser", "ast"]
categories = ["parsing", "data-structures"]
[lints]
workspace = true
[dependencies]
dsq-shared = { version = "0.1.0", path = "../dsq-shared" }
nom = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
num-bigint = { workspace = true }
indexmap = { workspace = true }
[dev-dependencies]
pretty_assertions = { workspace = true }