1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[package]
name = "libraw-rs-sys"
version = "0.0.4+libraw-0.20.1" # remember to update html_root_url
authors = ["Paolo Barbolini <paolo@paolo565.org>"]
description = "FFI bindings to LibRaw"
license = "MIT/Apache-2.0"
repository = "https://github.com/paolobarbolini/libraw-rs"
categories = ["multimedia::images", "external-ffi-bindings"]
keywords = ["raw"]
readme = "README.md"
edition = "2018"
build = "build.rs"
include = ["src/lib.rs", "src/bindings.rs", "LICENSE-*", "README.md", "libraw/libraw/*", "libraw/src/*", "libraw/internal/*", "libraw/COPYRIGHT", "libraw/LICENSE.*", "build.rs"]
[lib]
name = "libraw_sys"
[dependencies]
libc = "0.2"
[build-dependencies]
cc = { version = "1", features = ["parallel"] }
bindgen = { version = "0.57", default-features = false, features = ["runtime"], optional = true }
|