mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 17:41:32 +03:00
2254dfe9fa
* Reduce parser dependencies - `enso-parser-syntax-tree-visitor` is now only used when building tests and debug tools. - Remove `enso-logging` crate and its macros. - The main bin for `enso-parser` has been moved to a `check_syntax` tool in `enso-parser-debug`.
29 lines
730 B
TOML
29 lines
730 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 }
|
|
derivative = { workspace = true }
|
|
derive_more = { workspace = true }
|
|
serde = { workspace = true }
|
|
enso-macros = { path = "macros" }
|
|
|
|
[lints]
|
|
workspace = true
|