Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/env_filter/Cargo.toml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

refactor(filter): Add support for no_std environments

Mind fixing your commit type?

A refactor, by definition, has no user facing changes while this does. I would use feat

Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ regex = ["std", "dep:regex"]
std = []

[dependencies]
log = { version = "0.4.8", features = ["std"] }
regex = { version = "1.0.3", optional = true, default-features=false, features=["std", "perf"] }
log = { version = "0.4.8", default-features = false }
regex = { version = "1.0.3", optional = true, default-features = false, features = ["std", "perf"] }
Comment on lines +34 to +35
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like this belongs in the previous comit, could you move it there?


[dev-dependencies]
snapbox = "0.6"
Expand Down
Loading