mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
25 lines
449 B
TOML
25 lines
449 B
TOML
[package]
|
|
name = "host"
|
|
version = "0.0.1"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2021"
|
|
|
|
links = "app"
|
|
|
|
[lib]
|
|
name = "host"
|
|
path = "src/lib.rs"
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[[bin]]
|
|
name = "host"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
roc_std = { path = "../../../crates/roc_std" }
|
|
libc = "0.2"
|
|
backtrace = "0.3"
|
|
reqwest = { version="0.11.11", default-features=false, features=["blocking", "rustls-tls"] }
|
|
|
|
[workspace]
|