mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-11 07:22:55 +00:00
These dependencies make cargo rebuild more than is strictly necessary. Removing them makes the build a little faster.
16 lines
556 B
TOML
16 lines
556 B
TOML
[package]
|
|
name = "integration_tests"
|
|
version = "0.1.0"
|
|
authors = ["Stas Kelvich <stas@zenith.tech>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
rand = "0.8.3"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="a0d067b66447951d1276a53fb09886539c3fa094" }
|
|
tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="a0d067b66447951d1276a53fb09886539c3fa094" }
|
|
|
|
control_plane = { path = "../control_plane" }
|