-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
36 lines (31 loc) · 798 Bytes
/
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
[package]
name = "bayer"
version = "0.1.5"
authors = ["David Wang <millimillenary@gmail.com>"]
homepage = "https://github.com/wangds/libbayer.git"
repository = "https://github.com/wangds/libbayer.git"
documentation = "https://docs.rs/bayer/"
description = "Algorithms for demosaicing Bayer images."
license = "MIT"
readme = "README.md"
keywords = ["bayer", "cfa", "demosaic"]
categories = ["multimedia::images"]
[lib]
name = "bayer"
crate-type = ["rlib", "dylib"]
test = true
doctest = true
doc = true
[features]
default = ["rayon"]
bench = []
[dependencies]
byteorder = "1.1"
libc = "0.2"
rayon = { version = "0.8", optional = true }
quick-error = "1.2"
[dev-dependencies]
flic = "0.1"
sdl2 = { version = "0.30", features = ["image"] }
[badges]
travis-ci = { repository = "wangds/libbayer" }