aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index e7e2730..f36e6c2 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,14 @@ Current version: [![crates.io](https://img.shields.io/crates/v/germ.svg)](https:
# Cargo.toml
[dependencies]
-germ = "*" # Use current version show above!
+# To enable all features
+# germ = "*" # Use current version show above!
+
+# To enable certain features
+[dependencies.germ]
+version = "*" # Use current version show above!
+default-features = false
+features = ["ast"] # Enable the features you would like to use!
```
### Features