-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
51 lines (45 loc) · 1.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
46
47
48
49
50
51
[workspace]
resolver = "2"
members = [".", "cec_bindgen"]
[package]
name = 'libcec-sys'
version = "7.0.7-alpha.0"
authors = ['Sami Salonen']
edition = '2021'
license = 'GPL-2.0'
description = 'FFI bindings to libcec'
documentation = 'https://docs.rs/libcec-sys'
readme = 'README.md'
include = [
'/README.md',
'/LICENSE',
'/Cargo.toml',
'/src/*.rs',
'/vendor',
'/build/smoke_abi*.c',
'/build/build.rs',
]
keywords = ['libcec', 'cec', 'hdmi']
categories = ['external-ffi-bindings']
homepage = 'https://github.com/ssalonen/libcec-sys'
repository = 'https://github.com/ssalonen/libcec-sys'
build = 'build/build.rs'
links = 'cec'
[dependencies]
cfg-if = "1"
[build-dependencies]
cmake = "0.1.48"
fs_extra = "1.3.0"
pkg-config = "0.3.25"
cc = "1.0.73"
target-lexicon = "0.12"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] }
zip-extract = "0.1"
[features]
default = []
vendored = []
static = []
[badges.maintenance]
status = 'passively-maintained'
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(abi4)', 'cfg(abi5)', 'cfg(abi6)'] }