-
Notifications
You must be signed in to change notification settings - Fork 263
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
Fatal regex parse error
coming from tracing-subscriber
after updating
#534
Comments
Okay I just tested if it had anything to do with the
It doesn't. When run locally it works fine, but as soon as I try to install it in |
A workaround for the time being is running |
I see the same when trying to run When using the workaround, I get lots of building errors during |
This appears to be related to this issue: rust-lang/regex#982 |
Looks like they updated |
Fixes trunk-rs#534, resolved by tokio-rs/tracing#2566.
Yup! --- a/Cargo.toml
+++ b/Cargo.toml
@@ -47,7 +47,7 @@ tokio-tungstenite = "0.17"
toml = "0.5"
tower-http = { version = "0.3", features = ["fs", "trace"] }
tracing = "0.1"
-tracing-subscriber = { version = "0.3", features = ["env-filter"] }
+tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
which = "4"
zip = "0.6" Followed by Created a PR, I might as well close this then? |
FYI, the likely reason why |
Thanks for sharing that tidbit. I didn't know |
Yeah it's a big pain point. I wish |
Fixes trunk-rs#534, resolved by tokio-rs/tracing#2566.
Fixes trunk-rs#534, resolved by tokio-rs/tracing#2566.
I tried updating my install with
cargo install --force trunk
as I noticed an issue was fixed onmaster
. Now it always errors with aregex parse error
fromtracing-subscriber
..This sucks especially as it worked fine before I tried updating AND it also works fine on my local git clone (even added some tests that were missing), but now no matter what version I try to install (back to
^0.15
) it always fails as mentioned earlier.Even if I discard all of my
.zshrc
changesThe text was updated successfully, but these errors were encountered: