Skip to content

Commit

Permalink
Review Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wyatt-herkamp committed Apr 25, 2024
1 parent 5bf9541 commit fddc503
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -42,7 +42,7 @@ Cargo.lock

### VisualStudioCode ###
.vscode/*
.vscode/settings.json
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
Expand Down
2 changes: 1 addition & 1 deletion tracing-subscriber/Cargo.toml
Expand Up @@ -42,7 +42,7 @@ tracing-core = { path = "../tracing-core", version = "0.2", default-features = f

# only required by the `env-filter` feature
tracing = { optional = true, path = "../tracing", version = "0.2", default-features = false }
regex-automata = { optional = true, version = "0.4.6",default-features = false, features = ["syntax", "dfa-build", "dfa-search"] }
regex-automata = { optional = true, version = "0.4.6", default-features = false, features = ["syntax", "dfa-build", "dfa-search"] }
regex = { optional = true, version = "1.6.0", default-features = false, features = ["std", "unicode-case", "unicode-perl"] }
smallvec = { optional = true, version = "1.9.0" }
once_cell = { optional = true, version = "1.13.0" }
Expand Down
2 changes: 1 addition & 1 deletion tracing-subscriber/src/filter/env/field.rs
Expand Up @@ -279,7 +279,7 @@ impl fmt::Display for ValueMatch {
// === impl MatchPattern ===

impl FromStr for MatchPattern {
type Err = regex_automata::dfa::dense::BuildError;
type Err = BuildError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let matcher = Pattern::new(s)?;
Ok(Self {
Expand Down

0 comments on commit fddc503

Please sign in to comment.