| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
0 parents commit afde93e
128 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,44 @@ | |||
| 1 | + [package] | ||
| 2 | + name = "ruvector-decompiler" | ||
| 3 | + version.workspace = true | ||
| 4 | + edition.workspace = true | ||
| 5 | + rust-version.workspace = true | ||
| 6 | + license.workspace = true | ||
| 7 | + authors.workspace = true | ||
| 8 | + repository.workspace = true | ||
| 9 | + description = "SOTA JavaScript bundle decompiler using MinCut graph partitioning, self-learning name inference, and RVF witness chains" | ||
| 10 | + keywords = ["decompiler", "javascript", "mincut", "source-map", "reverse-engineering"] | ||
| 11 | + categories = ["development-tools", "algorithms"] | ||
| 12 | + | ||
| 13 | + [dependencies] | ||
| 14 | + ruvector-mincut = { path = "../ruvector-mincut", default-features = false } | ||
| 15 | + sha3 = "0.10" | ||
| 16 | + serde = { workspace = true } | ||
| 17 | + serde_json = { workspace = true } | ||
| 18 | + regex = "1" | ||
| 19 | + thiserror = { workspace = true } | ||
| 20 | + once_cell = "1" | ||
| 21 | + rayon = { workspace = true } | ||
| 22 | + memchr = "2" | ||
| 23 | + ort = { version = "=2.0.0-rc.10", optional = true, default-features = false, features = ["ndarray", "std"] } | ||
| 24 | + ndarray = { version = "0.16", optional = true } | ||
| 25 | + | ||
| 26 | + [features] | ||
| 27 | + default = [] | ||
| 28 | + # Enable neural name inference using ONNX Runtime (via `ort` crate) | ||
| 29 | + # or a GGUF/RVF model file. Adds model loading + inference capability. | ||
| 30 | + neural = ["ort", "ndarray"] | ||
| 31 | + | ||
| 32 | + [dev-dependencies] | ||
| 33 | + criterion = { version = "0.5", features = ["html_reports"] } | ||
| 34 | + | ||
| 35 | + [[bench]] | ||
| 36 | + name = "bench_parser" | ||
| 37 | + harness = false | ||
| 38 | + | ||
| 39 | + [[bench]] | ||
| 40 | + name = "bench_pipeline" | ||
| 41 | + harness = false | ||
| 42 | + | ||
| 43 | + [lib] | ||
| 44 | + crate-type = ["rlib"] | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,15 @@ | |||
| 1 | + MIT License | ||
| 2 | + | ||
| 3 | + Copyright (c) 2026 ruvnet | ||
| 4 | + | ||
| 5 | + Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 6 | + of this software and associated documentation files, to deal in the Software | ||
| 7 | + without restriction, including without limitation the rights to use, copy, | ||
| 8 | + modify, merge, publish, distribute, sublicense, and/or sell copies of the | ||
| 9 | + Software, and to permit persons to whom the Software is furnished to do so, | ||
| 10 | + subject to the following conditions: | ||
| 11 | + | ||
| 12 | + The above copyright notice and this permission notice shall be included in | ||
| 13 | + all copies or substantial portions of the Software. | ||
| 14 | + | ||
| 15 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND. | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments