aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-10 02:36:34 +0000
committerFuwn <[email protected]>2022-06-10 02:36:34 +0000
commita396a33f83e11a4af0fc5d8ba44d63d53a84ab20 (patch)
tree6cbeedc869d78cdb91bbba921278ff54bd5eb963 /README.md
parentdocs(cargo): version 0.2.4 -> 0.2.5 (diff)
downloadgerm-a396a33f83e11a4af0fc5d8ba44d63d53a84ab20.tar.xz
germ-a396a33f83e11a4af0fc5d8ba44d63d53a84ab20.zip
docs(cargo): expose all features by default0.2.6
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