aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-08-16 01:28:25 -0400
committerNathan Perry <np@nathanperry.dev>2024-08-16 01:29:31 -0400
commita435a926689b0b597caa1c724a91694f74dec778 (patch)
tree00085b30f013f969a511a1e1b1666e9c052cb8a6 /src/lib.rs
parentdabf532d8251063606f0ffcffb0faf5444c46a4a (diff)
windows: start postgres svc if not running
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 13a93e0..ac56087 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,5 +1,6 @@
#![feature(try_blocks)]
#![feature(let_chains)]
+#![feature(maybe_uninit_slice)]
#[cfg(feature = "db")]
pub mod db;
@@ -20,6 +21,9 @@ pub mod config;
pub mod log_setup;
pub mod util;
+#[cfg(windows)]
+pub mod windows_util;
+
pub use crate::{
config::*,
util::*,