Skip to content

Commit

Permalink
Implement new UI components to browse modules
Browse files Browse the repository at this point in the history
  • Loading branch information
ergrelet committed Mar 3, 2024
1 parent 3d7d575 commit 6e4891f
Show file tree
Hide file tree
Showing 10 changed files with 797 additions and 27 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions resym/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ rfd = "0.11"
# Note(ergrelet): `fancy-regex` is less performant than `onig` at the moment
# but is more portable (i.e., compiles to wasm32)
syntect = { version = "5.0", default-features = false, features=["default-fancy"] }
ahash = { version = "0.8", default-features = false, features = [
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead
"std",
] }

# Web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
4 changes: 4 additions & 0 deletions resym/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ mod frontend;
#[cfg(target_arch = "wasm32")]
mod mode;
#[cfg(target_arch = "wasm32")]
mod module_tree;
#[cfg(target_arch = "wasm32")]
mod module_tree_view;
#[cfg(target_arch = "wasm32")]
mod resym_app;
#[cfg(target_arch = "wasm32")]
mod settings;
Expand Down
2 changes: 2 additions & 0 deletions resym/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

mod frontend;
mod mode;
mod module_tree;
mod module_tree_view;
mod resym_app;
mod settings;
mod syntax_highlighting;
Expand Down
Loading

0 comments on commit 6e4891f

Please sign in to comment.