mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-25 23:29:59 +00:00
28 lines
623 B
TOML
28 lines
623 B
TOML
[package]
|
|
name = "postgres_ffi"
|
|
version = "0.1.0"
|
|
authors = ["Heikki Linnakangas <heikki@zenith.tech>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4.19"
|
|
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"
|
|
lazy_static = "1.4"
|
|
log = "0.4.14"
|
|
memoffset = "0.6.2"
|
|
thiserror = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
workspace_hack = { path = "../workspace_hack" }
|
|
zenith_utils = { path = "../zenith_utils" }
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.59.1"
|