[package] name = "shulkerscript" version = "0.1.0" edition = "2021" authors = ["Moritz Hölting "] description = "Shulkerscript language implementation with compiler" categories = ["compilers", "game-development"] keywords = ["minecraft", "datapack", "mcfunction"] repository = "https://github.com/moritz-hoelting/shulkerscript-lang" homepage = "https://shulkerscript.hoelting.dev/" readme = "README.md" license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["fs_access", "lua", "shulkerbox", "zip"] fs_access = ["shulkerbox?/fs_access"] lua = ["dep:mlua"] serde = ["dep:serde", "dep:serde_json", "shulkerbox?/serde"] shulkerbox = ["dep:shulkerbox", "dep:chksum-md5", "dep:serde_json"] zip = ["shulkerbox?/zip"] [dependencies] cfg-if = "1.0.0" chksum-md5 = { version = "0.1.0", optional = true } colored = "3.0.0" derive_more = { version = "2.0.1", default-features = false, features = ["deref", "deref_mut", "from"] } enum-as-inner = "0.6.0" getset = "0.1.2" itertools = "0.14.0" mlua = { version = "0.10.2", features = ["lua54", "vendored"], optional = true } pathdiff = "0.2.3" serde = { version = "1.0.217", features = ["derive"], optional = true } serde_json = { version = "1.0.138", optional = true } # shulkerbox = { version = "0.1.0", default-features = false, optional = true } shulkerbox = { git = "https://github.com/moritz-hoelting/shulkerbox", rev = "e9f2b9b91d72322ec2e063ce7b83415071306468", default-features = false, optional = true } strsim = "0.11.1" strum = { version = "0.27.0", features = ["derive"] } thiserror = "2.0.11" tracing = "0.1.41" [dev-dependencies] serde_json = "1.0.138" [[example]] name = "compiler" required-features = ["fs_access", "shulkerbox"] [[test]] name = "parsing" required-features = ["shulkerbox"] [[test]] name = "transpiling" required-features = ["shulkerbox"]