roc/crates/roc_std/Cargo.toml

29 lines
605 B
TOML
Raw Normal View History

2020-09-30 16:01:16 +03:00
[package]
name = "roc_std"
2021-12-27 18:12:19 +03:00
description = "Rust representations of Roc data structures"
2023-03-10 17:31:46 +03:00
authors = ["The Roc Contributors"]
edition = "2021"
license = "UPL-1.0"
repository = "https://github.com/roc-lang/roc"
version = "0.0.1"
2021-12-27 18:12:19 +03:00
[dependencies]
2023-03-10 17:31:46 +03:00
arrayvec = "0.7.2"
serde = { version = "1.0.153", optional = true }
static_assertions = "1.1.0"
2021-12-27 18:12:19 +03:00
[dev-dependencies]
2023-03-10 17:31:46 +03:00
libc = "0.2.139"
pretty_assertions = "1.3.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
serde_json = "1.0.94"
[features]
2022-08-11 00:33:32 +03:00
serde = ["dep:serde"]
std = []
[package.metadata.cargo-udeps.ignore]
2023-06-26 16:45:33 +03:00
development = ["quickcheck_macros", "serde_json"]