Skip to content

Commit c71d100

Browse files
committed
Bump 2.12.0-rc1 -> 2.12.0
1 parent 8ae9085 commit c71d100

1 file changed

Lines changed: 72 additions & 47 deletions

File tree

Cargo.toml

Lines changed: 72 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cramjam-python"
3-
version = "2.12.0-rc1"
3+
version = "2.12.0"
44
authors = ["Miles Granger <miles59923@gmail.com>"]
55
edition = "2021"
66
license = "MIT"
@@ -21,54 +21,79 @@ name = "cramjam"
2121
crate-type = ["cdylib"]
2222

2323
[features]
24-
default = ["extension-module", "snappy", "lz4", "bzip2", "brotli", "xz", "zstd", "gzip", "zlib", "deflate"]
25-
experimental = ["blosc2", "igzip", "ideflate", "izlib"]
26-
27-
extension-module = ["pyo3/extension-module"]
28-
generate-import-lib = ["pyo3/generate-import-lib"] # needed for Windows PyPy builds
29-
30-
snappy = ["libcramjam/snappy"]
31-
lz4 = ["libcramjam/lz4"]
32-
bzip2 = ["libcramjam/bzip2"]
33-
brotli = ["libcramjam/brotli"]
34-
zstd = ["libcramjam/zstd"]
35-
36-
xz = ["xz-static"]
37-
xz-static = ["libcramjam/xz-static"]
38-
xz-shared = ["libcramjam/xz-shared"]
24+
default = [
25+
"extension-module",
26+
"snappy",
27+
"lz4",
28+
"bzip2",
29+
"brotli",
30+
"xz",
31+
"zstd",
32+
"gzip",
33+
"zlib",
34+
"deflate",
35+
]
36+
experimental = ["blosc2", "igzip", "ideflate", "izlib"]
37+
38+
extension-module = ["pyo3/extension-module"]
39+
generate-import-lib = [
40+
"pyo3/generate-import-lib",
41+
] # needed for Windows PyPy builds
42+
43+
snappy = ["libcramjam/snappy"]
44+
lz4 = ["libcramjam/lz4"]
45+
bzip2 = ["libcramjam/bzip2"]
46+
brotli = ["libcramjam/brotli"]
47+
zstd = ["libcramjam/zstd"]
48+
49+
xz = ["xz-static"]
50+
xz-static = ["libcramjam/xz-static"]
51+
xz-shared = ["libcramjam/xz-shared"]
3952

4053
# ISA-L stuff
41-
igzip = ["igzip-static"]
42-
igzip-static = ["libcramjam/igzip-static"]
43-
igzip-shared = ["libcramjam/igzip-shared"]
44-
ideflate = ["ideflate-static"]
45-
ideflate-static = ["libcramjam/ideflate-static"]
46-
ideflate-shared = ["libcramjam/ideflate-shared"]
47-
izlib = ["izlib-static"]
48-
izlib-static = ["libcramjam/izlib-static"]
49-
izlib-shared = ["libcramjam/izlib-shared"]
50-
use-system-isal-static = ["libcramjam/use-system-isal", "libcramjam/igzip-static"]
51-
use-system-isal-shared = ["libcramjam/use-system-isal", "libcramjam/igzip-shared"]
52-
53-
gzip = ["gzip-static"]
54-
gzip-static = ["libcramjam/gzip-static"]
55-
gzip-shared = ["libcramjam/gzip-shared"]
56-
57-
zlib = ["zlib-static"]
58-
zlib-static = ["libcramjam/zlib-static"]
59-
zlib-shared = ["libcramjam/zlib-shared"]
60-
61-
deflate = ["deflate-static"]
62-
deflate-static = ["libcramjam/deflate-static"]
63-
deflate-shared = ["libcramjam/deflate-shared"]
64-
65-
blosc2 = ["blosc2-static"]
66-
blosc2-static = ["libcramjam/blosc2-static"]
67-
blosc2-shared = ["libcramjam/blosc2-shared"]
68-
use-system-blosc2-static = ["libcramjam/use-system-blosc2", "libcramjam/blosc2-static"]
69-
use-system-blosc2-shared = ["libcramjam/use-system-blosc2", "libcramjam/blosc2-shared"]
70-
71-
wasm32-compat = ["libcramjam/wasm32-compat"]
54+
igzip = ["igzip-static"]
55+
igzip-static = ["libcramjam/igzip-static"]
56+
igzip-shared = ["libcramjam/igzip-shared"]
57+
ideflate = ["ideflate-static"]
58+
ideflate-static = ["libcramjam/ideflate-static"]
59+
ideflate-shared = ["libcramjam/ideflate-shared"]
60+
izlib = ["izlib-static"]
61+
izlib-static = ["libcramjam/izlib-static"]
62+
izlib-shared = ["libcramjam/izlib-shared"]
63+
use-system-isal-static = [
64+
"libcramjam/use-system-isal",
65+
"libcramjam/igzip-static",
66+
]
67+
use-system-isal-shared = [
68+
"libcramjam/use-system-isal",
69+
"libcramjam/igzip-shared",
70+
]
71+
72+
gzip = ["gzip-static"]
73+
gzip-static = ["libcramjam/gzip-static"]
74+
gzip-shared = ["libcramjam/gzip-shared"]
75+
76+
zlib = ["zlib-static"]
77+
zlib-static = ["libcramjam/zlib-static"]
78+
zlib-shared = ["libcramjam/zlib-shared"]
79+
80+
deflate = ["deflate-static"]
81+
deflate-static = ["libcramjam/deflate-static"]
82+
deflate-shared = ["libcramjam/deflate-shared"]
83+
84+
blosc2 = ["blosc2-static"]
85+
blosc2-static = ["libcramjam/blosc2-static"]
86+
blosc2-shared = ["libcramjam/blosc2-shared"]
87+
use-system-blosc2-static = [
88+
"libcramjam/use-system-blosc2",
89+
"libcramjam/blosc2-static",
90+
]
91+
use-system-blosc2-shared = [
92+
"libcramjam/use-system-blosc2",
93+
"libcramjam/blosc2-shared",
94+
]
95+
96+
wasm32-compat = ["libcramjam/wasm32-compat"]
7297

7398

7499
[dependencies]

0 commit comments

Comments
 (0)