-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (77 loc) · 2.15 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (77 loc) · 2.15 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
members = [
"apps/*",
"crates/*",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.86"
async-channel = "2.3.1"
axum = "0.7.4"
bindgen = "0.69.4"
cairo-rs = { version = "0.20.7", default-features = false }
clap = "4.5.1"
clap_complete = "4.5.2"
diqwest = "=3.1.0"
digest_auth = "0.3.1"
dirs = "5.0.1"
env_logger = { version = "0.11.3", default-features = false }
expect-test = "1.5.1"
futures = "0.3.30"
futures-lite = "2.6.0"
futures-util = "0.3.30"
flate2 = "1.0.30"
glib = "0.20.9"
glib-sys = "0.20.9"
glob = "0.3.1"
gobject-sys = "0.20.9"
libc = "0.2.153"
libsyslog = "0.1.1"
log = "0.4.22"
pkg-config = "0.3.30"
regex = "1.7.2"
reqwest = { version = "0.12.5", default-features = false }
reqwest-websocket = "0.4.1"
semver = "1.0.23"
serde = "1.0.204"
serde_json = "1.0.120"
tar = "0.4.40"
tempdir = "0.3.7"
tempfile = "3.10.1"
thiserror = "1.0.61"
tokio = "1.38.1"
tower-http = "0.5.2"
url = "2.5.2"
acap-build = { path = "crates/acap-build" }
acap-logging = { path = "crates/acap-logging", default-features = false }
acap-ssh-utils = { path = "crates/acap-ssh-utils" }
acap-vapix = { path = "crates/acap-vapix" }
axevent = { path = "crates/axevent" }
axevent-sys = { path = "crates/axevent-sys" }
axoverlay = { path = "crates/axoverlay" }
axoverlay-sys = { path = "crates/axoverlay-sys" }
axparameter = { path = "crates/axparameter" }
axparameter-sys = { path = "crates/axparameter-sys" }
axstorage = { path = "crates/axstorage" }
axstorage-sys = { path = "crates/axstorage-sys" }
bbox = { path = "crates/bbox" }
bbox-sys = { path = "crates/bbox-sys" }
cargo-acap-build = { path = "crates/cargo-acap-build" }
cli-version = { path = "crates/cli-version" }
larod-sys = { path = "crates/larod-sys" }
licensekey = { path = "crates/licensekey" }
licensekey-sys = { path = "crates/licensekey-sys" }
mdb = { path = "crates/mdb" }
mdb-sys = { path = "crates/mdb-sys" }
vdo = { path = "crates/vdo" }
vdo-sys = { path = "crates/vdo-sys" }
[workspace.package]
edition = "2021"
# For projects that build only apps it's probably easier to customize the releae profile.
[profile.app]
inherits = "release"
opt-level = "s"
strip = "symbols"
lto = true
panic = "abort"
codegen-units = 1