add zenith_utils crate

This is a place for code that's shared between other crates in this
repository.
This commit is contained in:
Eric Seppanen
2021-04-20 10:53:43 -07:00
parent 7f777a485e
commit f387769203
4 changed files with 15 additions and 0 deletions

4
Cargo.lock generated
View File

@@ -2678,3 +2678,7 @@ dependencies = [
"postgres_ffi",
"walkeeper",
]
[[package]]
name = "zenith_utils"
version = "0.1.0"

View File

@@ -6,4 +6,5 @@ members = [
"zenith",
"control_plane",
"postgres_ffi",
"zenith_utils",
]

7
zenith_utils/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "zenith_utils"
version = "0.1.0"
authors = ["Eric Seppanen <eric@zenith.tech>"]
edition = "2018"
[dependencies]

3
zenith_utils/src/lib.rs Normal file
View File

@@ -0,0 +1,3 @@
//! zenith_utils is intended to be a place to put code that is shared
//! between other crates in this repository.