forked from eclipse-score/feo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (71 loc) · 1.83 KB
/
Cargo.toml
File metadata and controls
73 lines (71 loc) · 1.83 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
[workspace]
members = [
"examples/rust/cycle-benchmark",
"examples/rust/mini-adas",
"feo",
"feo-com",
"feo-cpp-build",
"feo-cpp-macros",
"feo-time",
"feo-tracer",
"feo-tracing",
"perfetto-model",
"tests/rust/feo_tests/test_agent",
"tests/rust/feo_tests",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
anyhow = "1.0.99"
argh = "0.1.13"
async-stream = "0.3.6"
bytes = "1.11.1"
cc = "1.2.34"
console = "0.16.0"
clap = { version = "4.5.50", features = ["derive"] }
env_logger = "0.11.8"
feo = { path = "feo", default-features = false }
feo-com = { path = "feo-com" }
feo-cpp-build = { path = "feo-cpp-build" }
feo-cpp-macros = { path = "feo-cpp-macros" }
feo-time = { path = "feo-time" }
feo-tracing = { path = "feo-tracing" }
ctrlc = { version = "3.4.4", features = ["termination"] }
futures = "0.3.31"
human_bytes = "0.4.3"
iceoryx2 = "0.5.0"
indicatif = "0.18.0"
indicatif-log-bridge = "0.2.3"
libc = "1.0.0-alpha.1"
log = { version = "0.4.27" }
mio = { version = "1.0.4", features = ["net", "os-poll"] }
nix = { version = "0.30.1", features = ["fs", "mman", "signal"] }
perfetto-model = { path = "perfetto-model" }
postcard = "1.1.3"
prost = "0.14.1"
prost-build = "0.14.1"
rand = "0.9.2"
serde = "1.0.219"
serde_json = "1.0.143"
socket2 = "0.6.0"
time = { version = "0.3.47", features = ["formatting", "macros", "serde"] }
tokio = { version = "1.47.1", features = [
"rt",
"macros",
"sync",
"net",
"time",
"signal",
] }
tokio-seqpacket = "0.8.0"
tokio-util = { version = "0.7.16", features = ["codec", "net"] }
tracing = { version = "0.1.41", features = [
"attributes",
], default-features = false }
tracing-subscriber = { version = "0.3.20", default-features = false }
ipc-channel = "0.20.2"
[profile.profiling]
inherits = "release"
debug = true