shulkerscript-lang/Cargo.toml

45 lines
1.6 KiB
TOML
Raw Permalink Normal View History

2024-03-27 19:27:11 +01:00
[package]
name = "shulkerscript"
2024-03-27 19:27:11 +01:00
version = "0.1.0"
edition = "2021"
authors = ["Moritz Hölting <moritz@hoelting.dev>"]
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"
2024-03-27 19:27:11 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-04-03 00:45:34 +02:00
[features]
default = ["fs_access", "lua", "shulkerbox", "zip"]
fs_access = ["shulkerbox?/fs_access"]
lua = ["dep:mlua"]
2024-06-09 17:59:56 +02:00
serde = ["dep:serde", "shulkerbox?/serde"]
shulkerbox = ["dep:shulkerbox", "dep:chksum-md5"]
zip = ["shulkerbox?/zip"]
2024-04-03 00:45:34 +02:00
2024-06-09 17:59:56 +02:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
path-absolutize = { version = "3.1.1", features = ["use_unix_paths_on_wasm"] }
2024-03-27 19:27:11 +01:00
[dependencies]
chksum-md5 = { version = "0.1.0", optional = true }
colored = "3.0.0"
derive_more = { version = "1.0.0", default-features = false, features = ["deref", "deref_mut", "from"] }
2024-03-27 21:39:56 +01:00
enum-as-inner = "0.6.0"
2024-03-27 19:27:11 +01:00
getset = "0.1.2"
itertools = "0.14.0"
mlua = { version = "0.10.2", features = ["lua54", "vendored"], optional = true }
path-absolutize = "3.1.1"
pathdiff = "0.2.3"
serde = { version = "1.0.217", features = ["derive", "rc"], optional = true }
2024-10-01 12:01:20 +02:00
shulkerbox = { version = "0.1.0", default-features = false, optional = true }
strsim = "0.11.1"
2024-03-27 19:27:11 +01:00
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.4"
thiserror = "2.0.11"
tracing = "0.1.41"