forked from pganalyze/pg_query.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 840 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "pg_query"
description = "PostgreSQL parser that uses the actual PostgreSQL server source to parse SQL queries and return the internal PostgreSQL parse tree."
version = "0.8.1"
edition = "2021"
documentation = "https://docs.rs/pg_query/"
build = "build.rs"
license = "MIT"
readme = "./README.md"
repository = "https://github.com/pganalyze/pg_query.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itertools = "0.10.3"
prost = "0.10.4"
serde = { version = "1.0.139", features = ["derive"] }
serde_json = "1.0.82"
thiserror = "1.0.31"
[build-dependencies]
bindgen = "0.60.1"
clippy = { version = "0.0.302", optional = true }
prost-build = "0.10.4"
fs_extra = "1.2.0"
[dev-dependencies]
easy-parallel = "3.2.0"
pretty_assertions = "1.2.1"
regex = "1.6.0"