shulkerscript-lang/Cargo.toml

26 lines
791 B
TOML
Raw Normal View History

2024-03-27 19:27:11 +01:00
[package]
name = "shulkerscript-lang"
version = "0.1.0"
edition = "2021"
# 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-04-03 00:45:34 +02:00
shulkerbox = ["dep:shulkerbox"]
serde = ["dep:serde"]
2024-04-06 17:23:20 +02:00
lua = ["dep:mlua"]
2024-04-03 00:45:34 +02:00
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-06 17:23:20 +02:00
mlua = { version = "0.9.7", features = ["luau"], optional = true }
serde = { version = "1.0.197", features = ["derive", "rc"], optional = true }
2024-04-03 00:45:34 +02:00
shulkerbox = { path = "../shulkerbox", optional = true}
2024-03-27 19:27:11 +01:00
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.2"
thiserror = "1.0.58"