Skip to content

Commit 0245855

Browse files
committed
feat: add encoding as default feature
1 parent 295ee2a commit 0245855

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
- name: Build
2020
run: cargo build --verbose
2121

22-
- name: Run tests (No Features)
22+
- name: Run tests (Standard)
2323
run: cargo test --verbose
2424

25-
- name: Run tests (Encoding)
26-
run: cargo test --verbose --features=encoding
25+
- name: Run tests (Encoding Only)
26+
run: cargo test --verbose --no-default-features --features=encoding
2727

28-
- name: Run tests (Decoding)
29-
run: cargo test --verbose --features=decoding
28+
- name: Run tests (No Features)
29+
run: cargo test --verbose --no-default-features
3030

3131
- name: Run tests (All Features)
3232
run: cargo test --verbose --all-features

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
1919
zstd = "0.13.3"
2020

2121
[features]
22+
default = ["decoding"]
2223
encoding = ["dep:walkdir"]
2324
decoding = []
2425
https = []

0 commit comments

Comments
 (0)