crane/examples/cross-rust-overlay/Cargo.toml
Ivan Petkov a185f3753a
Update cross compile example
* Sometimes we also need to set the HOST_CC environment variable to
  allow cross compiling crates which also need to build a program to run
  on the build platform itself
2022-02-24 17:49:22 -08:00

16 lines
224 B
TOML

[package]
name = "cross-rust-overlay"
version = "0.1.0"
edition = "2021"
[dependencies]
openssl-sys = "*"
[dependencies.sqlx]
version = "0.5.9"
default-features = false
features = [
"runtime-tokio-rustls",
"sqlite",
]