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