2021-10-30 03:28:55 +03:00
|
|
|
[package]
|
2022-05-23 05:16:04 +03:00
|
|
|
name = "enso-data-structures"
|
2021-10-30 03:28:55 +03:00
|
|
|
version = "0.2.0"
|
|
|
|
authors = ["Enso Team <contact@luna-lang.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2022-05-23 05:16:04 +03:00
|
|
|
description = "A collection of useful data structures."
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/enso-org/enso/lib/rust/data"
|
|
|
|
repository = "https://github.com/enso-org/enso"
|
2021-10-30 03:28:55 +03:00
|
|
|
license-file = "../../LICENSE"
|
|
|
|
keywords = []
|
|
|
|
categories = ["data-structures"]
|
|
|
|
publish = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["rlib", "cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-28 01:39:37 +03:00
|
|
|
enso-prelude = { path = "../prelude" }
|
2023-11-23 23:19:31 +03:00
|
|
|
serde = { workspace = true }
|
2023-01-28 01:39:37 +03:00
|
|
|
failure = { workspace = true }
|
2024-03-25 02:45:55 +03:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|