shulkerscript-lang/Cargo.toml

21 lines
577 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]
default = ["shulkerbox"]
shulkerbox = ["dep:shulkerbox"]
2024-03-27 19:27:11 +01:00
[dependencies]
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-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"