-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (21 loc) · 778 Bytes
/
Copy pathCargo.toml
File metadata and controls
22 lines (21 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "cec-dpms"
authors = ['Mariusz Białończyk']
version = "0.1.1"
edition = "2021"
license = 'GPL-2.0'
description = 'Simple program to power on/off TV by simulating DPMS feature using HDMI CEC'
documentation = 'https://github.com/manio/cec-dpms'
readme = 'README.md'
include = ['/README.md', '/LICENSE', '/Cargo.toml', '/Cargo.lock', '/src/*.rs', 'systemd/*.service']
keywords = ['libcec', 'cec', 'hdmi', 'dpms']
categories = ['command-line-utilities']
homepage = 'https://github.com/manio/cec-dpms'
repository = 'https://github.com/manio/cec-dpms'
[dependencies]
cec-rs = "12.0.0"
simplelog = { version = "0.11.2", features = ["paris", "ansi_term"] }
log = '0.4.11'
signal-hook = "0.3.17"
clap = { version = "3.0.13", features = ["derive"] }
hostname = '^0.4'