mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 05:52:55 +00:00
I didn't think this mattered, but it does: if you add a dependency to zenith_utils, but forget to request a feature you need, the crate will build from the workspace root, but not by itself. It's probably better to pull in the whole dependency tree. This leaves one problem unsolved: the missing feature above will now be a latent bug. If that feature gets removed later by other crates, and then the workspace_hack Cargo.toml is updated, this missing feature will become a build failure.
16 lines
317 B
TOML
16 lines
317 B
TOML
[package]
|
|
name = "zenith_utils"
|
|
version = "0.1.0"
|
|
authors = ["Eric Seppanen <eric@zenith.tech>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3"
|
|
thiserror = "1.0"
|
|
workspace_hack = { path = "../workspace_hack" }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.3"
|
|
bytes = "1.0"
|