From 0c1f4ba125105ac9b91d8253ced4c6bfac099ae0 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jan 2025 20:59:32 +0000 Subject: [PATCH] docs: update readme to include caveat --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 9e42799..6a73835 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ The available toolchain in the image are: - cargo-chef - cargo-hack - release-plz +- perl ### Scripts @@ -57,3 +58,13 @@ steps: - name: Check for Ignored Files run: check-for-ignored ``` + +## Caveats + +### native-tls + +This crate *must* use the `vendored` feature in order to compile in the Alpine Linux image. + +```toml +native-tls = { version = "0.2", features = ["vendored"] } +```