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"
|
2021-04-15 06:26:14 +03:00
|
|
|
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"
|
2022-08-03 12:41:19 +03:00
|
|
|
version = "0.0.1"
|
2021-12-27 18:12:19 +03:00
|
|
|
|
2022-03-05 01:32:09 +03:00
|
|
|
[dependencies]
|
2022-06-30 06:26:44 +03:00
|
|
|
static_assertions = "1.1.0"
|
2022-06-08 16:45:24 +03:00
|
|
|
arrayvec = "0.7.2"
|
2022-08-11 00:33:32 +03:00
|
|
|
serde = { version = "1", optional = true }
|
2022-03-05 01:32:09 +03:00
|
|
|
|
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"
|
2022-06-03 03:17:23 +03:00
|
|
|
libc = "0.2.106"
|
2022-02-25 22:05:08 +03:00
|
|
|
|
|
|
|
[features]
|
2022-08-06 20:01:07 +03:00
|
|
|
std = []
|
2022-08-11 00:33:32 +03:00
|
|
|
serde = ["dep:serde"]
|