summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladan Popovic <vladanovic@gmail.com>2022-11-25 21:20:45 +0100
committerVladan Popovic <vladanovic@gmail.com>2022-11-27 22:17:15 +0100
commit66ad114e1909ddde5a17005df9c332605a9f9d60 (patch)
treee5723d26907c61e6d721f39c78437642de651bb1
parent4b737b46acfe7cbfcbe293d6262b5c1b7c64dcb6 (diff)
downloadconduit-66ad114e1909ddde5a17005df9c332605a9f9d60.zip
feat: add systemd feature flag
-rw-r--r--Cargo.lock7
-rw-r--r--Cargo.toml5
2 files changed, 11 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index db8ee9d..6ae1836 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -404,6 +404,7 @@ dependencies = [
"ruma",
"rusqlite",
"rust-argon2",
+ "sd-notify",
"serde",
"serde_json",
"serde_yaml",
@@ -2316,6 +2317,12 @@ dependencies = [
]
[[package]]
+name = "sd-notify"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "621e3680f3e07db4c9c2c3fb07c6223ab2fab2e54bd3c04c3ae037990f428c32"
+
+[[package]]
name = "security-framework"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index ae51945..801d363 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -93,8 +93,10 @@ tikv-jemallocator = { version = "0.5.0", features = ["unprefixed_malloc_on_suppo
lazy_static = "1.4.0"
async-trait = "0.1.57"
+sd-notify = { version = "0.4.1", optional = true }
+
[features]
-default = ["conduit_bin", "backend_sqlite", "backend_rocksdb", "jemalloc"]
+default = ["conduit_bin", "backend_sqlite", "backend_rocksdb", "jemalloc", "systemd"]
#backend_sled = ["sled"]
backend_persy = ["persy", "parking_lot"]
backend_sqlite = ["sqlite"]
@@ -103,6 +105,7 @@ backend_rocksdb = ["rocksdb"]
jemalloc = ["tikv-jemalloc-ctl", "tikv-jemallocator"]
sqlite = ["rusqlite", "parking_lot", "tokio/signal"]
conduit_bin = ["axum"]
+systemd = ["sd-notify"]
[[bin]]
name = "conduit"