shulkerscript-lang/Cargo.toml

38 lines
1.3 KiB
TOML
Raw Normal View History

2024-03-27 19:27:11 +01:00
[package]
name = "shulkerscript"
2024-03-27 19:27:11 +01:00
version = "0.1.0"
edition = "2021"
authors = ["Moritz Hölting <moritz@hoelting.dev>"]
categories = ["compilers"]
description = "ShulkerScript language implementation with compiler"
repository = "https://github.com/moritz-hoelting/shulkerscript-lang"
readme = "README.md"
license = "MIT"
2024-03-27 19:27:11 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-04-03 00:45:34 +02:00
[features]
2024-04-06 17:23:20 +02:00
default = ["lua", "shulkerbox"]
2024-06-09 17:59:56 +02:00
serde = ["dep:serde", "shulkerbox?/serde"]
2024-04-03 00:45:34 +02:00
shulkerbox = ["dep:shulkerbox"]
2024-04-06 17:23:20 +02:00
lua = ["dep:mlua"]
2024-04-03 00:45:34 +02:00
2024-06-09 17:59:56 +02:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
path-absolutize = { version = "3.1.1", features = ["use_unix_paths_on_wasm"] }
2024-03-27 19:27:11 +01:00
[dependencies]
chksum-md5 = "0.0.0"
2024-03-27 19:27:11 +01:00
colored = "2.1.0"
derive_more = { version = "0.99.17", default-features = false, features = ["deref", "from", "deref_mut"] }
2024-03-27 21:39:56 +01:00
enum-as-inner = "0.6.0"
2024-03-27 19:27:11 +01:00
getset = "0.1.2"
2024-04-07 21:12:47 +02:00
mlua = { version = "0.9.7", features = ["lua54", "vendored"], optional = true }
path-absolutize = "3.1.1"
serde = { version = "1.0.197", features = ["derive", "rc"], optional = true }
2024-06-24 21:37:02 +02:00
shulkerbox = { git = "https://github.com/moritz-hoelting/shulkerbox", default-features = false, optional = true, rev = "a2d20dab8ea97bbd873edafb23afaad34292457f" }
2024-03-27 19:27:11 +01:00
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.2"
thiserror = "1.0.58"
2024-06-15 21:34:14 +02:00
tracing = "0.1.40"