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 2, 2024
1 parent a9118e5 commit 8ec6705
Show file tree
Hide file tree
Showing 9 changed files with 786 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
2 changes: 2 additions & 0 deletions resym/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ mod frontend;
#[cfg(target_arch = "wasm32")]
mod mode;
#[cfg(target_arch = "wasm32")]
mod module_tree;
#[cfg(target_arch = "wasm32")]
mod resym_app;
#[cfg(target_arch = "wasm32")]
mod settings;
Expand Down
1 change: 1 addition & 0 deletions resym/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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

0 comments on commit 8ec6705

Please sign in to comment.