2024-06-21 19:26:02 +02:00
|
|
|
[package]
|
|
|
|
name = "webcompiler"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2024-08-15 21:41:29 +02:00
|
|
|
[profile.release]
|
2024-10-01 01:17:28 +02:00
|
|
|
opt-level = "z"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
wee_alloc = ["dep:wee_alloc"]
|
2024-08-15 21:41:29 +02:00
|
|
|
|
2024-06-21 19:26:02 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-01 00:33:47 +02:00
|
|
|
ansi-to-html = "0.2.1"
|
2024-06-21 19:26:02 +02:00
|
|
|
anyhow = "1.0.86"
|
|
|
|
base64 = "0.22.1"
|
2024-10-01 01:17:28 +02:00
|
|
|
cfg-if = "1.0.0"
|
2024-06-27 00:08:20 +02:00
|
|
|
colored = "2.1.0"
|
2024-10-01 00:33:47 +02:00
|
|
|
console_error_panic_hook = "0.1.7"
|
|
|
|
serde = "1.0"
|
|
|
|
serde-wasm-bindgen = "0.6.5"
|
|
|
|
shulkerscript = { git = "https://github.com/moritz-hoelting/shulkerscript-lang.git", default-features = false, features = ["serde", "shulkerbox"], rev = "a9a8aff13b0ad0986ee1bdf3d44b74676385dfcd" }
|
|
|
|
toml = "0.8.19"
|
2024-10-01 01:17:28 +02:00
|
|
|
wasm-bindgen = "0.2.93"
|
|
|
|
wee_alloc = { version = "0.4.5", optional = true }
|
2024-10-01 00:33:47 +02:00
|
|
|
zip = { version = "2.1.3", default-features = false, features = ["deflate"] }
|