We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7849d80 commit 4127b2cCopy full SHA for 4127b2c
rust-doc/Makefile
@@ -1,3 +1,8 @@
1
+# Full docs build with all dependencies for local development
2
docs:
3
../scripts/environment/install-protoc.sh ${HOME}/protoc
4
PATH=${PATH}:${HOME}/protoc/ cargo doc --no-default-features --features="docs"
5
+# rust-doc.vector.dev specific build without the extra dependencies
6
+ci-docs-build:
7
+ ../scripts/environment/install-protoc.sh ${HOME}/protoc
8
+ PATH=${PATH}:${HOME}/protoc/ cargo doc --no-default-features --features="docs" --no-deps
0 commit comments