2023-07-28 00:33:15 +02:00
[ package ]
name = "mers_lib"
2024-06-26 12:54:04 +02:00
version = "0.8.16"
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 ]
2023-08-14 17:17:08 +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 requires ecolor-term, but this is not listed here because I want people to explicitly opt-in to the extra `colored` dependency via the ecolor-term feature.
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 }