当openssl不在依赖关系图中时,为什么在openssl上交叉编译构建会失败?
When building my Rust lambda using cross, I get this error:
error: failed to run custom build command for `openssl-sys v0.9.58`
当我查看依赖关系图时,甚至没有列出openssl!这是怎么回事?
这是我的Cargo.toml文件:
[package]
name = "my_lambda"
version = "0.1.0"
authors = ["Thomas <>"]
editi...