docs: update readme to include caveat
All checks were successful
/ test (map[name:nightly]) (push) Successful in 40s
/ test (map[name:stable]) (push) Successful in 41s

This commit is contained in:
Paul Campbell 2025-01-14 20:59:32 +00:00
parent f1a2ae0311
commit 0c1f4ba125

View file

@ -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"] }
```