2023-07-28 00:33:15 +02:00
|
|
|
[package]
|
|
|
|
name = "mers_lib"
|
2024-10-11 23:42:14 +02:00
|
|
|
version = "0.9.9"
|
2023-07-28 00:33:15 +02:00
|
|
|
edition = "2021"
|
2024-01-11 13:05:52 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "library to use the mers language in other projects"
|
|
|
|
keywords = ["scripting"]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/Dummi26/mers"
|
2023-07-28 15:20:02 +02:00
|
|
|
|
|
|
|
[features]
|
2024-06-27 18:11:37 +02:00
|
|
|
default = ["parse"]
|
2024-06-26 01:02:19 +02:00
|
|
|
|
|
|
|
# for parsing and running mers code (for most situations: just enable parse)
|
2023-07-28 15:20:02 +02:00
|
|
|
parse = ["run"]
|
|
|
|
run = []
|
2023-10-23 21:48:15 +02:00
|
|
|
|
2024-06-26 01:02:19 +02:00
|
|
|
# color features are used when formatting error messages.
|
|
|
|
ecolor-term = ["dep:colored"]
|
2024-06-26 12:54:04 +02:00
|
|
|
ecolor-html = ["dep:html-escape"]
|
|
|
|
|
|
|
|
pretty-print = []
|
2024-06-26 01:02:19 +02:00
|
|
|
|
2023-10-23 21:48:15 +02:00
|
|
|
[dependencies]
|
|
|
|
line-span = "0.1.5"
|
2024-06-26 12:54:04 +02:00
|
|
|
colored = { version = "2.1.0", optional = true }
|
|
|
|
html-escape = { version = "0.2.13", optional = true }
|