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. +