-
Notifications
You must be signed in to change notification settings - Fork 35
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
features should not require users to manually include dependencies #36
Comments
That sounds good to me. Feel free to open a pull request if you have time to work on it. |
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 19, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 19, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 19, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 19, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 19, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 19, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 19, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
d-e-s-o
pushed a commit
that referenced
this issue
Nov 24, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes #36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 25, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
tamird
added a commit
to tamird/test-log
that referenced
this issue
Nov 25, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes d-e-s-o#36.
d-e-s-o
pushed a commit
that referenced
this issue
Nov 25, 2023
- Move macros to a new test-log-macros crate. - Export env_logger and tracing_subscriber from the test-log crate. - Macros emit test_log::{env_logger,tracing_subscriber} references. Removes the need for users to explicitly depend on additional crates. Fixes #36.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See the features section of the README.
I think the usual pattern for this is:
log
andtrace
which are reexported.test-log
to "runtime".trace
andlog
features enable"runtime"/log
and"runtime"/trace
, respectively.test-log
, refer tolog
andtrace
as"runtime"::log
and"runtime"::trace
, respectively.This would produce a nicer user experience.
The text was updated successfully, but these errors were encountered: