-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (47 loc) · 1.11 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
52
53
54
55
[package]
name = "arexibo"
description = "A client (player) for the Xibo signage system"
version = "0.3.0"
rust-version = "1.75"
edition = "2021"
authors = ["Georg Brandl <[email protected]>"]
license = "AGPL-3.0-or-later"
repository = "https://github.com/birkenfeld/arexibo"
keywords = ["xibo", "signage", "qt"]
[[bin]]
name = "arexibo"
path = "src/main.rs"
[dependencies]
# general
anyhow = "1.0"
base64 = "0.22"
time = { version = "0.3.37", features = ["parsing", "formatting", "local-offset", "serde"] }
once_cell = "1.18"
clap = { version = "4.0", features = ["cargo", "derive"] }
crossbeam-channel = "0.5"
parking_lot = "0.12"
hex = "0.4"
itertools = "0.14"
log = "0.4"
nix = { version = "0.29", features = ["fs", "hostname"] }
rand = "0.8"
dbus = "0.9"
# crypto
arc4 = "0.1"
md-5 = "0.10"
rsa = "0.9"
# file formats
elementtree = "1.2"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
# network
tiny_http = "0.12"
ureq = { version = "3.0", features = ["socks-proxy"] }
zmq = "0.10"
# MSRV
base64ct = "~1.6"
[build-dependencies]
cmake = "0.1"
shlex = "1.3"
elementtree = "1.2"
[features]