forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
112 lines (96 loc) · 4.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[workspace]
resolver = "2"
members = [
"iceoryx2-bb/lock-free/",
"iceoryx2-bb/threadsafe/",
"iceoryx2-bb/container",
"iceoryx2-bb/derive-macros",
"iceoryx2-bb/elementary",
"iceoryx2-bb/log",
"iceoryx2-bb/memory",
"iceoryx2-bb/posix",
"iceoryx2-bb/system-types",
"iceoryx2-bb/testing",
"iceoryx2-bb/trait-tests",
"iceoryx2-ffi/ffi",
"iceoryx2-ffi/ffi-macros",
"iceoryx2-cal",
"iceoryx2",
"iceoryx2-pal/concurrency-sync",
"iceoryx2-pal/posix/",
"iceoryx2-pal/configuration/",
"iceoryx2-cli",
"examples",
"benchmarks/publish-subscribe",
"benchmarks/event"
]
[workspace.package]
categories = ["network-programming"]
description = "iceoryx2: Lock-Free Zero-Copy Interprocess Communication"
edition = "2021"
homepage = "https://iceoryx.io"
keywords = ["zero-copy", "communication", "ipc", "publish-subscribe", "request-response"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/eclipse-iceoryx/iceoryx2"
rust-version = "1.75"
version = "0.4.1"
[workspace.dependencies]
iceoryx2-bb-threadsafe = { version = "0.4.1", path = "iceoryx2-bb/threadsafe/" }
iceoryx2-bb-lock-free = { version = "0.4.1", path = "iceoryx2-bb/lock-free/" }
iceoryx2-bb-container = { version = "0.4.1", path = "iceoryx2-bb/container/" }
iceoryx2-bb-derive-macros = { version = "0.4.1", path = "iceoryx2-bb/derive-macros/" }
iceoryx2-bb-elementary = { version = "0.4.1", path = "iceoryx2-bb/elementary/" }
iceoryx2-bb-log = { version = "0.4.1", path = "iceoryx2-bb/log/" }
iceoryx2-bb-memory = { version = "0.4.1", path = "iceoryx2-bb/memory/" }
iceoryx2-bb-posix = { version = "0.4.1", path = "iceoryx2-bb/posix/" }
iceoryx2-bb-system-types = { version = "0.4.1", path = "iceoryx2-bb/system-types/" }
iceoryx2-bb-trait-tests = { version = "0.4.1", path = "iceoryx2-bb/trait-tests/" }
iceoryx2-bb-testing = { version = "0.4.1", path = "iceoryx2-bb/testing/" }
iceoryx2-pal-concurrency-sync = { version = "0.4.1", path = "iceoryx2-pal/concurrency-sync/" }
iceoryx2-pal-posix = { version = "0.4.1", path = "iceoryx2-pal/posix/" }
iceoryx2-pal-configuration = { version = "0.4.1", path = "iceoryx2-pal/configuration/" }
iceoryx2-cal = { version = "0.4.1", path = "iceoryx2-cal" }
iceoryx2-ffi = { version = "0.4.1", path = "iceoryx2-ffi/ffi" }
iceoryx2-ffi-macros = { version = "0.4.1", path = "iceoryx2-ffi/ffi-macros" }
iceoryx2 = { version = "0.4.1", path = "iceoryx2/" }
iceoryx2-cli = { version = "0.4.1", path = "iceoryx2_cli/"}
anyhow = { version = "1.0.86" }
bindgen = { version = "0.69.4" }
bitflags = { version = "2.5.0" }
cargo_metadata = { version = "0.18.1" }
cbindgen = { version = "0.26.0" }
cc = { version = "1.0.98" }
cdr = { version = "0.2.4" }
clap = { version = "4.5.4", features = ["derive"] }
enum-iterator = { version = "2.1.0" }
better-panic = { version = "0.3.0" }
colored = { version = "2.1" }
generic-tests = { version = "0.1.2" }
human-panic = { version = "1.2.3" }
lazy_static = { version = "1.4.0" }
log = { version = "0.4.21" }
once_cell = { version = "1.19.0" }
ouroboros = { version = "0.18.4" }
proc-macro2 = { version = "1.0.84" }
quote = { version = "1.0.36" }
ron = { version = "0.8" }
serde = { version = "1.0.203", features = ["derive"] }
serde_yaml = { version = "0.9.34" }
serde_json = { version = "1.0" }
serde_test = { version = "1.0.176" }
sha1_smol = { version = "1.0.0" }
syn = { version = "2.0.66", features = ["full"] }
tempfile = { version = "3.12.0" }
termsize = { version = "0.1.6" }
thiserror = { version = "1.0.56" }
tiny-fn = { version = "0.1.6" }
toml = { version = "0.8.13" }
tracing = { version = "0.1.40" }
windows-sys = { version = "0.48.0", features = ["Win32_Security", "Win32_Security_Authorization", "Win32_System_Memory", "Win32_System_Threading", "Win32_Foundation", "Win32_System_WindowsProgramming", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_Diagnostics_Debug", "Win32_System_SystemInformation", "Win32_System_Diagnostics_ToolHelp", "Win32_System_Console", "Win32_Networking_WinSock",
"Win32_System_SystemServices", "Win32_System_ProcessStatus"] }
[profile.release]
strip = true
lto = true
# opt-level = "z"
panic = "abort"