mirror of
https://github.com/enso-org/enso.git
synced 2024-12-24 04:24:01 +03:00
e7ca4aaf25
Removed `enso-types` crate which had only one reference in unused part of the code. Removed some unused dependencies from `Cargo.toml` files. # Important Notes CI has a similar hiccup as before. Please disregard this for now in the review.
22 lines
555 B
TOML
22 lines
555 B
TOML
[package]
|
|
name = "enso-data-structures"
|
|
version = "0.2.0"
|
|
authors = ["Enso Team <contact@luna-lang.org>"]
|
|
edition = "2021"
|
|
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"
|
|
license-file = "../../LICENSE"
|
|
keywords = []
|
|
categories = ["data-structures"]
|
|
publish = true
|
|
|
|
[lib]
|
|
crate-type = ["rlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
enso-prelude = { path = "../prelude" }
|
|
serde = { workspace = true }
|
|
failure = { workspace = true }
|