Skip to content
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

fix: increase min version of env_filter to 0.1.1 #87

Merged
merged 1 commit into from
Jan 3, 2025

Conversation

andylokandy
Copy link
Contributor

@andylokandy andylokandy commented Jan 2, 2025

env_filter = 0.1.0 will not compile with the follwing errors:

error[E0599]: no method named `try_parse` found for struct `env_filter::Builder` in the current scope
   --> src/filter/env_filter.rs:194:17
    |
194 |         builder.try_parse(&config).ok()?;
    |                 ^^^^^^^^^
    |
help: there is a method `parse` with a similar name
    |
194 |         builder.parse(&config).ok()?;
    |                 ~~~~~

error[E0599]: no method named `try_parse` found for struct `env_filter::Builder` in the current scope
   --> src/filter/env_filter.rs:223:16
    |
223 |         self.0.try_parse(filters)?;
    |                ^^^^^^^^^
    |
help: there is a method `parse` with a similar name
    |
223 |         self.0.parse(filters)?;
    |                ~~~~~

@tisonkun tisonkun merged commit c6cd824 into fast:main Jan 3, 2025
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants