为了让二进制能跑在主流发行版上, 现在用的 cargo zigbuild --target x86_64-unknown-linux-gnu.2.17 --release 编译.
有个问题, 如果依赖的库用了 openssl, 一直提示 cargo:warning=build/expando.c:2:10: fatal error: 'openssl/opensslconf.h' file not found
系统是 debian11, 已安装 libssl-dev pkg-config. 直接用 cargo build 能编译过的, 用 zigbuild 就不行. 因为依赖的库只能依赖 openssl, 不支持 rustls, 有没有比较好的解决办法?