-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathCargo.toml
69 lines (61 loc) · 1.54 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "orb-ui"
version = "0.0.3"
description = "Systemd daemon responsible for running the UI on the orb."
authors = ["Cyril Fougeray <[email protected]>"]
publish = false
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
async-trait = "0.1.74"
clap.workspace = true
color-eyre.workspace = true
dashmap = "5.5.3"
derive_more.workspace = true
eyre.workspace = true
futures.workspace = true
humantime = "2.1.0"
orb-build-info.path = "../build-info"
orb-messages.workspace = true
orb-rgb.path = "rgb"
orb-sound.path = "sound"
orb-telemetry.workspace = true
orb-uart.path = "uart"
pid.path = "pid"
prost = "0.12.3"
rand = "0.8.5"
serde_json = "1.0.108"
serde.workspace = true
thiserror.workspace = true
tokio-stream = "0.1.14"
tokio.workspace = true
tracing.workspace = true
zbus.workspace = true
[build-dependencies]
orb-build-info = { path = "../build-info", features = ["build-script"] }
[[example]]
name = "ui-replay"
path = "examples/ui-replay.rs"
# dependencies for the dbus-client example
[dev-dependencies]
chrono = "0.4.35"
hound = "3.5.1"
[package.metadata.deb]
maintainer-scripts = "debian/"
assets = [
["sound/assets/*.wav", "/home/worldcoin/data/sounds/", "644"],
["target/release/orb-ui", "/usr/local/bin/", "755"],
]
systemd-units = [
{ unit-name = "worldcoin-ui" },
]
[package.metadata.orb]
unsupported_targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
]
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(tokio_unstable)']