-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 884 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 884 Bytes
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
[package]
name = "ispc-downsampler"
version = "0.4.0"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Image downsampler crate using ISPC"
documentation = "https://docs.rs/ispc-downsampler"
homepage = "https://github.com/Traverse-Research/ispc-downsampler"
repository = "https://github.com/Traverse-Research/ispc-downsampler"
include = [
"/src/",
"/build.rs",
"/benches/",
"/examples/",
"/README.md",
"/LICENSE-*",
]
[dependencies]
ispc_rt = "2"
[build-dependencies]
ispc_compile = { version = "2.0.1", optional = true }
ispc_rt = "2"
[dev-dependencies]
image = "0.25.1"
stb_image = "0.3.0"
criterion = "0.5"
# Make sure we do an apples to apples, single threaded, comparison in the benchmark
resize = { version = "0.8", default-features = false, features = ["std"] }
[[bench]]
name = "basic"
harness = false
[features]
ispc = ["ispc_compile"]