You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This means that even a simple "hello world" app takes a lot longer to compile.
As far as I can tell, env_logger isn't actually needed, it's solely for debugging. So I propose that it be hidden behind a Cargo --feature, so that way it doesn't affect people who don't need the logging.
The text was updated successfully, but these errors were encountered:
Motivation
When using
web-sys
, it pulls in theenv_logger
dependency, which in turn pulls in all of these dependencies:This means that even a simple "hello world" app takes a lot longer to compile.
As far as I can tell,
env_logger
isn't actually needed, it's solely for debugging. So I propose that it be hidden behind a Cargo--feature
, so that way it doesn't affect people who don't need the logging.The text was updated successfully, but these errors were encountered: