mirror of
https://github.com/ipetkov/crane.git
synced 2024-12-01 17:27:23 +03:00
a185f3753a
* 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
16 lines
224 B
TOML
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",
|
|
]
|