-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (39 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "blosc2-rs"
version = "0.3.1+2.15.1"
description = "Blosc2"
license = "MIT"
edition = "2021"
exclude = [
".gitignore",
".gitmodules",
".github/*",
"benches/*",
"data/*",
"environment.yml",
]
[lib]
name = "blosc2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["shared"]
use-system-blosc2 = ["blosc2-sys/use-system-blosc2"]
regenerate-bindings = ["blosc2-sys/regenerate-bindings"]
static = ["blosc2-sys/static"]
shared = ["blosc2-sys/shared"]
deactivate-zlib = ["blosc2-sys/deactivate-zlib"]
prefer-external-zlib = ["blosc2-sys/prefer-external-zlib"]
deactivate-zstd = ["blosc2-sys/deactivate-zstd"]
prefer-external-zstd = ["blosc2-sys/prefer-external-zstd"]
prefer-external-lz4 = ["blosc2-sys/prefer-external-lz4"]
deactivate-zlib-optim = ["blosc2-sys/deactivate-zlib-optim"]
[dependencies]
blosc2-sys = { path = "blosc2-sys", version = "0.3.1+2.15.1" }
parking_lot = "^0.12"
[dev-dependencies]
ctor = "0.2.0"
criterion = { version = "0.4", features = ["html_reports"] }
rand = "0.8.5"
[[bench]]
name = "benchmarks"
harness = false