2024-03-27 13:58:09 +01:00
|
|
|
[package]
|
|
|
|
name = "shulkerscript"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-04-02 19:29:58 +02:00
|
|
|
[features]
|
|
|
|
zip = ["shulkerbox/zip"]
|
|
|
|
lang-debug = []
|
|
|
|
|
2024-03-27 13:58:09 +01:00
|
|
|
[dependencies]
|
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
|
|
|
colored = "2.1.0"
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
thiserror = "1.0.58"
|
|
|
|
toml = "0.8.12"
|
2024-04-02 19:29:58 +02:00
|
|
|
shulkerscript-lang = {path = "../shulkerscript-lang"}
|
|
|
|
shulkerbox = {path = "../shulkerbox", default-features = false}
|
|
|
|
|