-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathCargo.toml
43 lines (38 loc) · 1.08 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
[package]
name = "orb-backend-state"
version = "0.0.5"
description = "Systemd service that reads current orb state from orb-manager backend"
authors = ["Ryan Butler <[email protected]>"]
publish = false
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[features]
default = ["stage"]
stage = []
[dependencies]
clap.workspace = true
color-eyre.workspace = true
derive_more.workspace = true
futures.workspace = true
orb-attest-dbus.workspace = true
orb-build-info.workspace = true
orb-header-parsing.workspace = true
orb-security-utils = { workspace = true, features = ["reqwest"] }
orb-telemetry.workspace = true
reqwest.workspace = true
tokio.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
zbus.workspace = true
[build-dependencies]
orb-build-info = { workspace = true, features = ["build-script"] }
[package.metadata.deb]
assets = [
["target/release/orb-backend-state", "/usr/local/bin/", "755"]
]
maintainer-scripts = "debian/"
systemd-units = [
{ unit-name = "worldcoin-backend-state" },
]