-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (60 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
65 lines (60 loc) · 1.98 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "async-tiff"
version = "0.3.0"
edition = "2021"
authors = ["Kyle Barron <kyle@developmentseed.org>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/developmentseed/async-tiff"
description = "Asynchronous TIFF reader."
readme = "README.md"
[dependencies]
async-trait = "0.1.89"
bytemuck = { version = "1.24", features = ["extern_crate_alloc"] }
byteorder = "1"
bytes = "1.7.0"
flate2 = "1.0.20"
futures = "0.3.31"
jpeg = { package = "jpeg-decoder", version = "0.3.0", default-features = false }
jpeg2k = { version = "0.10.1", optional = true }
lerc = { version = "0.2.1", optional = true }
lzma-rust2 = { version = "0.16.2", optional = true, features = ["xz"] }
ndarray = { version = "0.17", optional = true }
num_enum = "0.7.3"
object_store = { version = "0.13", optional = true }
reqwest = { version = "0.13", default-features = false, optional = true }
thiserror = "2"
tokio = { version = "1.43.0", default-features = false, features = ["sync"] }
webp = { version = "0.3", optional = true }
weezl = "0.2.1"
zstd = "0.13"
[dev-dependencies]
criterion = { package = "codspeed-criterion-compat", version = "4.1.0" }
object_store = { version = "0.13", features = ["http"] }
rayon = "1.11.0"
tiff = "0.11"
tokio = { version = "1.9", features = [
"macros",
"fs",
"rt-multi-thread",
"io-util",
] }
tokio-test = "0.4.4"
[features]
default = ["object_store", "reqwest"]
jpeg2k = ["dep:jpeg2k"]
lerc = ["dep:lerc"]
lzma = ["dep:lzma-rust2"]
ndarray = ["dep:ndarray"]
object_store = ["dep:object_store"]
reqwest = ["dep:reqwest"]
tokio = ["tokio/io-util"]
webp = ["dep:webp"]
[package.metadata.cargo-all-features]
# The maximum number of features to try at once. Does not count features from
# `always_include_features`. This is useful for reducing the number of
# combinations run for a crate with a large amount of features, since in most
# cases a bug just needs a small set of 2-3 features to reproduce.
max_combination_size = 1
[[bench]]
name = "read_tiff"
harness = false