[package] name = "shulkerscript-cli" version = "0.1.0" edition = "2021" authors = ["Moritz Hölting "] description = "Command line tool to compile Shulkerscript projects" categories = ["command-line-utilities", "compilers", "game-development"] keywords = ["minecraft", "datapack", "mcfunction"] repository = "https://github.com/moritz-hoelting/shulkerscript-cli" 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 [[bin]] name = "shulkerscript" path = "src/main.rs" [features] default = ["lua", "migrate", "watch", "zip"] lang-debug = [] lua = ["shulkerscript/lua"] migrate = ["dep:indoc", "dep:serde_json", "dep:walkdir"] watch = ["dep:notify-debouncer-mini", "dep:ctrlc"] zip = ["shulkerscript/zip"] [dependencies] anyhow = "1.0.95" clap = { version = "4.5.32", features = ["deprecated", "derive", "env"] } colored = "3.0.0" const_format = "0.2.34" ctrlc = { version = "3.4.5", optional = true } dotenvy = "0.15.7" git2 = { version = "0.20.0", default-features = false } human-panic = "2.0.2" indoc = { version = "2.0.5", optional = true } inquire = "0.7.5" notify-debouncer-mini = { version = "0.7.0", default-features = false, optional = true } path-absolutize = "3.1.1" pathdiff = "0.2.3" serde = { version = "1.0.217", features = ["derive"] } serde_json = { version = "1.0.138", optional = true } # shulkerscript = { version = "0.1.0", features = ["fs_access", "shulkerbox"], default-features = false } shulkerscript = { git = "https://github.com/moritz-hoelting/shulkerscript-lang", features = ["fs_access", "shulkerbox"], default-features = false, rev = "d9f2d99c3a5e09488fc85ad792501a209387a89d" } thiserror = "2.0.11" toml = "0.9.5" tracing = "0.1.41" tracing-subscriber = "0.3.19" walkdir = { version = "2.5.0", optional = true }