roc/crates/packaging/Cargo.toml
2022-11-20 11:10:17 -05:00

27 lines
718 B
TOML

[package]
name = "roc_packaging"
version = "0.0.1"
authors = ["The Roc Contributors"]
license = "UPL-1.0"
repository = "https://github.com/roc-lang/roc"
edition = "2021"
description = "Functionality for packaging Roc source code - e.g. for distribution over the network"
[dependencies]
roc_parse = { path = "../compiler/parse" }
tar = "0.4.38" # used for `roc build --tar` so .rp1 files can hold multiple other files
brotli = "3.3.4" # used for decompressing tarballs over HTTPS, if the server supports brotli
flate2 = "1.0.24"
walkdir = "2.3.2"
blake3 = "1.3.1"
base64-url = "1.4.13"
ureq = "2.5.0"
bumpalo.workspace = true
[dev-dependencies]
pretty_assertions = "1.3.0"
indoc = "1.0.7"
tempfile.workspace = true