mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-05 12:32:54 +00:00
## Problem close https://github.com/neondatabase/neon/issues/4266 ## Summary of changes With this PR, rust-analyzer should be able to give lints and auto complete in `mod tests`, and this makes writing tests easier. Previously, rust-analyzer cannot do auto completion. --------- Signed-off-by: Alex Chi <iskyzh@gmail.com>
31 lines
606 B
TOML
31 lines
606 B
TOML
[package]
|
|
name = "postgres_ffi"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
bytes.workspace = true
|
|
byteorder.workspace = true
|
|
anyhow.workspace = true
|
|
crc32c.workspace = true
|
|
hex.workspace = true
|
|
once_cell.workspace = true
|
|
log.workspace = true
|
|
memoffset.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
utils.workspace = true
|
|
|
|
workspace_hack.workspace = true
|
|
|
|
[dev-dependencies]
|
|
env_logger.workspace = true
|
|
postgres.workspace = true
|
|
|
|
[build-dependencies]
|
|
anyhow.workspace = true
|
|
bindgen.workspace = true
|