unidecompiler-plugin-wasm 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: unidecompiler-plugin-wasm
3
+ Version: 0.1.1
4
+ Summary: WebAssembly frontend plugin for unidecompiler
5
+ Author-email: Wker <1670133844@qq.com>
6
+ License-Expression: AGPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/Wker666/unidecompiler
8
+ Project-URL: Repository, https://github.com/Wker666/unidecompiler
9
+ Project-URL: Issues, https://github.com/Wker666/unidecompiler/issues
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: unidecompiler<0.2.0,>=0.1.1
13
+ Requires-Dist: wasm<2,>=1.2
14
+ Requires-Dist: wasmtime<40,>=24
15
+
16
+ # unidecompiler-plugin-wasm
17
+
18
+ Frontend plugin for WebAssembly `.wasm` modules. It validates and decodes
19
+ modules with `wasm` and `wasmtime`, then submits neutral thin IR to
20
+ `unidecompiler`.
21
+
22
+ Install with:
23
+
24
+ ```sh
25
+ python -m pip install unidecompiler-plugin-wasm
26
+ ```
27
+
28
+ The plugin is discovered automatically by compatible CLI and GUI hosts.
@@ -0,0 +1,13 @@
1
+ # unidecompiler-plugin-wasm
2
+
3
+ Frontend plugin for WebAssembly `.wasm` modules. It validates and decodes
4
+ modules with `wasm` and `wasmtime`, then submits neutral thin IR to
5
+ `unidecompiler`.
6
+
7
+ Install with:
8
+
9
+ ```sh
10
+ python -m pip install unidecompiler-plugin-wasm
11
+ ```
12
+
13
+ The plugin is discovered automatically by compatible CLI and GUI hosts.
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "unidecompiler-plugin-wasm"
7
+ version = "0.1.1"
8
+ description = "WebAssembly frontend plugin for unidecompiler"
9
+ readme = "README.md"
10
+ license = "AGPL-3.0-or-later"
11
+ authors = [{ name = "Wker", email = "1670133844@qq.com" }]
12
+ requires-python = ">=3.11"
13
+ dependencies = ["unidecompiler>=0.1.1,<0.2.0", "wasm>=1.2,<2", "wasmtime>=24,<40"]
14
+
15
+ [project.urls]
16
+ Homepage = "https://github.com/Wker666/unidecompiler"
17
+ Repository = "https://github.com/Wker666/unidecompiler"
18
+ Issues = "https://github.com/Wker666/unidecompiler/issues"
19
+
20
+ [project.entry-points."unidecompiler.frontends"]
21
+ wasm = "unidecompiler_plugin_wasm.plugin:WasmFrontendPlugin"
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ """Frontend adapter for WebAssembly modules."""