-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (49 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (49 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "unluac"
version = "1.4.3"
edition = "2024"
description = "Multi-dialect Lua decompiler written in Rust."
license = "MIT"
readme = "README.md"
repository = "https://github.com/x3zvawq/unluac-rs"
homepage = "https://github.com/x3zvawq/unluac-rs"
documentation = "https://docs.rs/unluac"
rust-version = "1.94"
keywords = ["lua", "luajit", "luau", "decompiler", "bytecode"]
exclude = [
".vscode/**",
"lua/**",
"packages/**",
"tests/**",
"xtask/**"
]
[features]
default = ["decompile-debug", "timing-report"]
decompile-debug = []
timing-report = []
[lints]
workspace = true
[workspace]
members = [
"xtask",
"packages/unluac-cli",
"packages/unluac-test-support",
"packages/unluac-wasm",
]
resolver = "3"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
manual_ok_or = "deny"
needless_borrow = "deny"
needless_collect = "deny"
redundant_clone = "deny"
[dependencies]
chardetng = "1.0.0"
encoding_rs = "0.8.35"
owo-colors = "4.2.2"
strum = "0.27.2"
strum_macros = "0.27.2"
thiserror = "2.0.12"
[dev-dependencies]
unluac-test-support = { path = "packages/unluac-test-support" }