Skip to content
This repository was archived by the owner on May 11, 2023. It is now read-only.

Commit 00ebbcc

Browse files
committed
Add zlib to default features
1 parent 2913754 commit 00ebbcc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
name: CI
77

88
env:
9-
CARGO_ARGS: --features "ssl jit"
9+
CARGO_ARGS: --features ssl,jit
1010
NON_WASM_PACKAGES: >
1111
-p rustpython-bytecode
1212
-p rustpython-common

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ members = [
1515
]
1616

1717
[features]
18-
default = ["threading", "pylib"]
18+
default = ["threading", "pylib", "zlib"]
1919
flame-it = ["rustpython-vm/flame-it", "flame", "flamescope"]
2020
freeze-stdlib = ["rustpython-vm/freeze-stdlib"]
2121
jit = ["rustpython-vm/jit"]
2222
threading = ["rustpython-vm/threading"]
23+
zlib = ["rustpython-vm/zlib"]
2324

2425
ssl = ["rustpython-vm/ssl"]
2526

0 commit comments

Comments
 (0)