forked from AdnoC/sixel-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (36 loc) · 1 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
45
[package]
name = "sixel-sys"
version = "0.3.1"
authors = ["AdnoC <[email protected]>"]
description = "FFI bindings to libsixel"
keywords = ["sixel", "libsixel", "image"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/AdnoC/sixel-sys"
repository = "https://github.com/AdnoC/sixel-sys"
links = "sixel"
build = "build.rs"
[dependencies]
# Optional libsixel dependencies
curl-sys = { version = "0.3.11", optional = true}
#libgd
gdk-pixbuf-sys = { version = "0.3.4", optional = true}
# Drop-in libjpeg replacement
mozjpeg-sys = { version = "0.3.3", optional = true }
#libpng git: git://git.code.sf.net/p/libpng/code
# png-sys = { git = , optional = true }
[build-dependencies]
make-cmd = "0.1.0"
# bindgen = "0.23"
[dev-dependencies]
lazy_static = "0.2.8"
[features]
curl = ["curl-sys"]
jpeg = ["mozjpeg-sys"]
pixbuf = ["gdk-pixbuf-sys"]
# Need to handle these eventually
png = []
gd = []
# Maybe I should just turn this off regardless
# 99% of the time it won't be needed
python_interface = []