From f3877692030a69da1ef9dff9b500e4e5c5aa376f Mon Sep 17 00:00:00 2001 From: Eric Seppanen Date: Tue, 20 Apr 2021 10:53:43 -0700 Subject: [PATCH] add zenith_utils crate This is a place for code that's shared between other crates in this repository. --- Cargo.lock | 4 ++++ Cargo.toml | 1 + zenith_utils/Cargo.toml | 7 +++++++ zenith_utils/src/lib.rs | 3 +++ 4 files changed, 15 insertions(+) create mode 100644 zenith_utils/Cargo.toml create mode 100644 zenith_utils/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index ad2a518f22..259799d80f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2678,3 +2678,7 @@ dependencies = [ "postgres_ffi", "walkeeper", ] + +[[package]] +name = "zenith_utils" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 3e9c59ce3e..d242faaaee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,4 +6,5 @@ members = [ "zenith", "control_plane", "postgres_ffi", + "zenith_utils", ] diff --git a/zenith_utils/Cargo.toml b/zenith_utils/Cargo.toml new file mode 100644 index 0000000000..77bc1e9ecb --- /dev/null +++ b/zenith_utils/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "zenith_utils" +version = "0.1.0" +authors = ["Eric Seppanen "] +edition = "2018" + +[dependencies] diff --git a/zenith_utils/src/lib.rs b/zenith_utils/src/lib.rs new file mode 100644 index 0000000000..3b833f4c2a --- /dev/null +++ b/zenith_utils/src/lib.rs @@ -0,0 +1,3 @@ +//! zenith_utils is intended to be a place to put code that is shared +//! between other crates in this repository. +