roc/crates/roc_std/Cargo.toml
2022-11-13 16:10:02 +01:00

27 lines
546 B
TOML

[package]
authors = ["The Roc Contributors"]
description = "Rust representations of Roc data structures"
edition = "2021"
license = "UPL-1.0"
name = "roc_std"
readme = "README.md"
repository = "https://github.com/roc-lang/roc"
version = "0.0.1"
[dependencies]
static_assertions = "1.1.0"
arrayvec = "0.7.2"
serde = { version = "1", optional = true }
[dev-dependencies]
indoc = "1.0.3"
libc = "0.2.135"
pretty_assertions = "1.0.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
serde_json = "1.0.83"
[features]
std = []
serde = ["dep:serde"]