roc/crates/roc_std/Cargo.toml

24 lines
460 B
TOML
Raw Normal View History

2020-09-30 16:01:16 +03:00
[package]
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
2021-12-27 18:12:19 +03:00
description = "Rust representations of Roc data structures"
2022-05-16 18:04:17 +03:00
edition = "2021"
license = "UPL-1.0"
2021-12-27 18:12:19 +03:00
name = "roc_std"
2020-09-30 16:01:16 +03:00
readme = "README.md"
2021-12-27 18:12:19 +03:00
repository = "https://github.com/rtfeldman/roc"
version = "0.0.1"
2021-12-27 18:12:19 +03:00
[dependencies]
static_assertions = "1.1.0"
2022-06-08 16:45:24 +03:00
arrayvec = "0.7.2"
2021-12-27 18:12:19 +03:00
[dev-dependencies]
indoc = "1.0.3"
pretty_assertions = "1.0.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
libc = "0.2.106"
[features]
2022-08-06 20:01:07 +03:00
std = []