2024-03-27 13:58:09 +01:00
|
|
|
[package]
|
2024-06-12 18:27:33 +02:00
|
|
|
name = "shulkerscript-cli"
|
2024-03-27 13:58:09 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-06-10 10:02:17 +02:00
|
|
|
authors = ["Moritz Hölting <moritz@hoelting.dev>"]
|
2024-09-30 17:01:06 +02:00
|
|
|
description = "Command line tool to compile Shulkerscript projects"
|
|
|
|
categories = ["command-line-utilities", "compilers", "game-development"]
|
|
|
|
keywords = ["minecraft", "datapack", "mcfunction"]
|
2024-06-10 10:02:17 +02:00
|
|
|
repository = "https://github.com/moritz-hoelting/shulkerscript-cli"
|
2024-09-30 17:01:06 +02:00
|
|
|
homepage = "https://shulkerscript.hoelting.dev/"
|
2024-06-10 10:02:17 +02:00
|
|
|
readme = "README.md"
|
2024-09-30 17:01:06 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
2024-06-10 10:02:17 +02:00
|
|
|
|
2024-03-27 13:58:09 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-06-12 18:27:33 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "shulkerscript"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2024-04-02 19:29:58 +02:00
|
|
|
[features]
|
2024-09-22 23:01:05 +02:00
|
|
|
default = ["lua", "migrate", "watch", "zip"]
|
2024-04-02 19:29:58 +02:00
|
|
|
lang-debug = []
|
2024-06-12 18:27:33 +02:00
|
|
|
lua = ["shulkerscript/lua"]
|
2024-09-22 23:01:05 +02:00
|
|
|
migrate = ["dep:indoc", "dep:serde_json", "dep:walkdir"]
|
2024-06-12 22:25:09 +02:00
|
|
|
watch = ["dep:notify-debouncer-mini", "dep:ctrlc"]
|
2024-09-30 17:01:06 +02:00
|
|
|
zip = ["shulkerscript/zip"]
|
2024-04-02 19:29:58 +02:00
|
|
|
|
2024-03-27 13:58:09 +01:00
|
|
|
[dependencies]
|
2024-09-22 13:39:57 +02:00
|
|
|
anyhow = "1.0.89"
|
|
|
|
clap = { version = "4.5.18", features = ["deprecated", "derive", "env"] }
|
2024-03-27 13:58:09 +01:00
|
|
|
colored = "2.1.0"
|
2024-09-22 13:39:57 +02:00
|
|
|
const_format = "0.2.33"
|
|
|
|
ctrlc = { version = "3.4.5", optional = true }
|
2024-06-10 15:22:05 +02:00
|
|
|
dotenvy = "0.15.7"
|
2024-09-22 13:39:57 +02:00
|
|
|
git2 = { version = "0.19.0", default-features = false }
|
|
|
|
human-panic = "2.0.1"
|
2024-09-22 23:01:05 +02:00
|
|
|
indoc = { version = "2.0.5", optional = true }
|
2024-09-30 17:01:06 +02:00
|
|
|
inquire = "0.7.5"
|
2024-09-22 13:39:57 +02:00
|
|
|
notify-debouncer-mini = { version = "0.4.1", default-features = false, optional = true }
|
|
|
|
path-absolutize = "3.1.1"
|
2024-06-26 21:16:18 +02:00
|
|
|
pathdiff = "0.2.1"
|
2024-09-22 13:39:57 +02:00
|
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
2024-09-22 23:01:05 +02:00
|
|
|
serde_json = { version = "1.0.128", optional = true }
|
2024-09-30 17:01:06 +02:00
|
|
|
shulkerscript = { git = "https://github.com/moritz-hoelting/shulkerscript-lang.git", features = ["fs_access", "shulkerbox", "zip"], default-features = false, rev = "a9a8aff13b0ad0986ee1bdf3d44b74676385dfcd" }
|
2024-09-22 13:39:57 +02:00
|
|
|
thiserror = "1.0.63"
|
|
|
|
toml = "0.8.19"
|
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = "0.3.18"
|
2024-09-22 23:01:05 +02:00
|
|
|
walkdir = { version = "2.5.0", optional = true }
|