-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove unused rust modules #9540
Conversation
@@ -41,7 +41,6 @@ impl DocParser { | |||
} | |||
|
|||
/// Parse the documentation. | |||
#[profile(Detail)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was the ONLY remaining usage of the enso-profiler
, so I just removed it. We don't need this anymore, since we use the parse function directly anyway, and the whole profiler machinery was effectively abandoned once we removed old gui.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably CloneRef
could be now also removed with minimal changes?
.collect_vec(); | ||
.collect::<Vec<_>>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes in LS tools caused by removal of itertools
from prelude. That was one of the last remaining usages, and it was trivial to replace.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving the tiny LS change
Pull Request Description
Removes a bulk of rust crates that we no longer need, but that added significant install, build and testing time to the Rust parser.
Most significantly, removed
enso-web
andenso-shapely
, and got rid of many no longer necessary#![feature]
s. Moved two still used proc-macros from shapely to prelude. The last remaining usage ofweb-sys
is within the logger (console.log
), but we may actually want to keep that one.Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Scala,
Java,
and
Rust
style guides. In case you are using a language not listed above, follow the Rust style guide.
./run ide build
.