roc/examples/cli/cli-platform/Cargo.toml
2023-03-06 19:47:57 -08:00

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]