aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2020-11-21 12:25:38 +0100
committerGustav Sörnäs <gustav@sornas.net>2020-11-21 16:19:17 +0100
commit93f8deb0f69d2545e23814dd27f4489fdd3740f2 (patch)
tree045c4e299ed2aa0adafb7d4d47218cd7c0e3b46c
parent63695021db135859818c7ddbfd2a9a66e1bcb8aa (diff)
downloadmum-93f8deb0f69d2545e23814dd27f4489fdd3740f2.tar.gz
update feature names
-rw-r--r--README.org10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.org b/README.org
index a055786..81d8652 100644
--- a/README.org
+++ b/README.org
@@ -40,8 +40,8 @@ The following features can be specified:
| Name | Needed for | Additional crates |
|--------------------+---------------+-------------------|
-| mumd/libnotify | Notifications | 20 |
-| mumd/libsamplerate | Sound effects | 54 |
+| mumd/notifications | Notifications | 20 |
+| mumd/sound-effects | Sound effects | 54 |
Note that the "additional crates" isn't continually updated and might change.
Features might also have overlapping dependencies.
@@ -50,12 +50,12 @@ Awaiting `-Z package-features`, changing which features are compiled requires
you to compile `mumd/` separately by entering its directory and specifying
its features.
-To summarize with an example, the following compiles with only libnotify
-enabled.
+To summarize with an example, the following compiles with only the
+notifications-feature enabled.
#+BEGIN_SRC sh
$ cd mumd
-$ cargo build --release --no-default-features --features "libnotify"
+$ cargo build --release --no-default-features --features "notifications"
$ cd ../mumctl
$ cargo build --release
#+END_SRC