mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 05:52:55 +00:00
31 lines
689 B
TOML
31 lines
689 B
TOML
[package]
|
|
name = "postgres_ffi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
rand = "0.8.3"
|
|
regex = "1.4.5"
|
|
bytes = "1.0.1"
|
|
byteorder = "1.4.3"
|
|
anyhow = "1.0"
|
|
crc32c = "0.6.0"
|
|
hex = "0.4.3"
|
|
once_cell = "1.13.0"
|
|
log = "0.4.14"
|
|
memoffset = "0.7"
|
|
thiserror = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
utils = { path = "../utils" }
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.9"
|
|
postgres = { git = "https://github.com/neondatabase/rust-postgres.git", rev="43e6db254a97fdecbce33d8bc0890accfd74495e" }
|
|
wal_craft = { path = "wal_craft" }
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
bindgen = "0.61"
|