-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
35 lines (31 loc) · 922 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
31
32
33
34
35
[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 = "5.1.0"
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.13.0"
serde = { version = "1.0.139", features = ["derive"] }
serde_json = "1.0.82"
thiserror = "1.0.31"
[build-dependencies]
bindgen = "0.66.1"
clippy = { version = "0.0.302", optional = true }
prost = "0.13.0"
prost-build = "0.10.4"
prost-types = "0.13.0"
fs_extra = "1.2.0"
cc = "1.0.83"
glob = "0.3.1"
heck = "0.4"
[dev-dependencies]
easy-parallel = "3.2.0"
pretty_assertions = "1.4.0"
regex = "1.6.0"