mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 15:12:26 +03:00
f14b79f8cf
Updated rust version, removed some unnecessary or problematic dependencies. Ported some changes from bazel branch.
29 lines
732 B
TOML
29 lines
732 B
TOML
[package]
|
|
name = "enso-prelude"
|
|
version = "0.2.7"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "An augmented standard library in the vein of Haskell's prelude."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../LICENSE"
|
|
keywords = ["prelude", "standard-library"]
|
|
categories = ["algorithms"]
|
|
publish = true
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
enso-reflect = { path = "../reflect" }
|
|
enso-zst = { path = "../zst" }
|
|
boolinator = { workspace = true }
|
|
derive-where = { workspace = true }
|
|
derive_more = { workspace = true }
|
|
serde = { workspace = true }
|
|
enso-macros = { path = "macros" }
|
|
|
|
[lints]
|
|
workspace = true
|