Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andylokandy committed Aug 1, 2024
1 parent d2d8fe7 commit ac90573
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
cargo run --example fn_layout_filter
cargo run --features="no-color" --example no_color_stdio
cargo run --features="json" --example json_stdio
cargo run --features="json,file" --example rolling_file
cargo run --features="json,rolling_file" --example rolling_file
required:
name: Required
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ rustdoc-args = ["--cfg", "docs"]

[features]
fastrace = ["dep:fastrace"]
rolling_file = ["dep:crossbeam-channel", "dep:parking_lot", "dep:time"]
json = ["dep:serde_json", "dep:serde"]
no-color = ["colored/no-color"]
opentelemetry = [
"dep:opentelemetry",
"dep:opentelemetry-otlp",
"dep:opentelemetry_sdk",
]
rolling_file = ["dep:crossbeam-channel", "dep:parking_lot", "dep:time"]

[dependencies]
anyhow = { version = "1.0" }
Expand Down Expand Up @@ -86,4 +86,4 @@ required-features = ["json"]
[[example]]
name = "rolling_file"
path = "examples/rolling_file.rs"
required-features = ["file", "json"]
required-features = ["rolling_file", "json"]

0 comments on commit ac90573

Please sign in to comment.