From 38f16be2d271e17fd023f355d7945a4bfe47c7da Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Thu, 30 Apr 2020 11:37:52 -0700 Subject: [PATCH] Add a `make doc` to the makefile. This produces a rustdoc that documents wasmer and its dependencies. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ae3409a4621..d7760d7c282 100644 --- a/Makefile +++ b/Makefile @@ -3,3 +3,6 @@ tests-spec-update-testsuite: test: cargo test --release + +doc: + cargo doc --all-features --document-private-items