mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-27 11:36:11 +00:00
I don't know if this matters at all, but I don't think we should use "rlib". The [rust docs](https://doc.rust-lang.org/reference/linkage.html) suggest using "lib" by default. "lib" probably just aliases to "rlib", but it lets the compiler pick what it wants. I don't think this will fix anything, but I am half hopeful it will somehow fix #6121.
22 lines
336 B
TOML
22 lines
336 B
TOML
[package]
|
|
name = "host"
|
|
authors = ["The Roc Contributors"]
|
|
edition = "2021"
|
|
license = "UPL-1.0"
|
|
links = "app"
|
|
version = "0.0.1"
|
|
|
|
[lib]
|
|
name = "host"
|
|
path = "src/lib.rs"
|
|
crate-type = ["staticlib", "lib"]
|
|
|
|
[[bin]]
|
|
name = "host"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
roc_std = { path = "../../../crates/roc_std" }
|
|
|
|
[workspace]
|