forked from ssalonen/cec-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 908 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 = 'cec-rs'
# Do note msrv setting in clippy.toml as well
rust-version = "1.56.1"
version = "7.1.2-alpha.0"
authors = ['Sami Salonen']
edition = '2021'
license = 'GPL-2.0'
description = 'Thin but safe wrapper for libcec'
documentation = 'https://docs.rs/cec-rs'
readme = 'README.md'
include = ['/README.md', '/LICENSE', '/Cargo.toml', '/src/*.rs', 'build.rs']
keywords = ['libcec', 'cec', 'hdmi']
categories = ['api-bindings']
homepage = 'https://github.com/ssalonen/cec-rs'
repository = 'https://github.com/ssalonen/cec-rs'
build = 'build.rs'
[dependencies]
arrayvec = '0.7.1'
log = '0.4'
derive_builder = '0.10.2'
num-traits = '0.2.14'
[dependencies.libcec-sys]
version = '4.0.3'
[dependencies.enum-repr-derive]
version = '0.2.0'
[badges.maintenance]
status = 'passively-maintained'
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(abi4)', 'cfg(abi5)', 'cfg(abi6)'] }