[package] name = "shulkerscript-cli" version = "0.1.0" edition = "2021" authors = ["Moritz Hölting "] categories = ["command-line-utilities", "compilers"] description = "Command line tool to compile ShulkerScript projects" repository = "https://github.com/moritz-hoelting/shulkerscript-cli" readme = "README.md" license = "MIT" # 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 = ["zip", "lua", "watch"] lang-debug = [] lua = ["shulkerscript/lua"] watch = ["dep:notify-debouncer-mini", "dep:ctrlc"] zip = ["shulkerbox/zip"] [dependencies] clap = { version = "4.5.4", features = ["derive", "env", "deprecated"] } colored = "2.1.0" serde = { version = "1.0.197", features = ["derive"] } thiserror = "1.0.58" toml = "0.8.12" shulkerscript = { git = "https://github.com/moritz-hoelting/shulkerscript-lang.git", features = ["shulkerbox"], default-features = false, rev = "a0a27cda96e1922b019b216961c39f7ef7991d22" } shulkerbox = { git = "https://github.com/moritz-hoelting/shulkerbox.git", default-features = false, rev = "a2d20dab8ea97bbd873edafb23afaad34292457f" } git2 = { version = "0.19.0", default-features = false } path-absolutize = "3.1.1" dotenvy = "0.15.7" notify-debouncer-mini = { version = "0.4.1", default-features = false, optional = true } ctrlc = { version = "3.4.4", optional = true } tracing = "0.1.40" tracing-subscriber = "0.3.18" # waiting for pull request to be merged inquire = { git = "https://github.com/moritz-hoelting/rust-inquire.git", branch = "main", package = "inquire" } camino = "1.1.7" human-panic = "2.0.0" anyhow = "1.0.86"