forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (74 loc) · 3.27 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
[workspace]
resolver = "2"
members = [
"iceoryx2-bb/lock-free/",
"iceoryx2-bb/threadsafe/",
"iceoryx2-bb/container",
"iceoryx2-bb/elementary",
"iceoryx2-bb/log",
"iceoryx2-bb/memory",
"iceoryx2-bb/posix",
"iceoryx2-bb/system-types",
"iceoryx2-bb/testing",
"iceoryx2-bb/trait-tests",
"iceoryx2-cal",
"iceoryx2",
"iceoryx2-pal/concurrency-sync",
"iceoryx2-pal/posix/",
"iceoryx2-pal/configuration/",
"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", "inter-process", "publish-subscribe", "request-response", "shmem", "shared-memory", "shared_memory", "shared"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/eclipse-iceoryx/iceoryx2"
rust-version = "1.73"
version = "0.3.0"
[workspace.dependencies]
iceoryx2-bb-threadsafe = { version = "0.3.0", path = "iceoryx2-bb/threadsafe/" }
iceoryx2-bb-lock-free = { version = "0.3.0", path = "iceoryx2-bb/lock-free/" }
iceoryx2-bb-container = { version = "0.3.0", path = "iceoryx2-bb/container/" }
iceoryx2-bb-elementary = { version = "0.3.0", path = "iceoryx2-bb/elementary/" }
iceoryx2-bb-log = { version = "0.3.0", path = "iceoryx2-bb/log/" }
iceoryx2-bb-memory = { version = "0.3.0", path = "iceoryx2-bb/memory/" }
iceoryx2-bb-posix = { version = "0.3.0", path = "iceoryx2-bb/posix/" }
iceoryx2-bb-system-types = { version = "0.3.0", path = "iceoryx2-bb/system-types/" }
iceoryx2-bb-trait-tests = { version = "0.3.0", path = "iceoryx2-bb/trait-tests/" }
iceoryx2-bb-testing = { version = "0.3.0", path = "iceoryx2-bb/testing/" }
iceoryx2-pal-concurrency-sync = { version = "0.3.0", path = "iceoryx2-pal/concurrency-sync/" }
iceoryx2-pal-posix = { version = "0.3.0", path = "iceoryx2-pal/posix/" }
iceoryx2-pal-configuration = { version = "0.3.0", path = "iceoryx2-pal/configuration/" }
iceoryx2-cal = { version = "0.3.0", path = "iceoryx2-cal" }
iceoryx2 = { version = "0.3.0", path = "iceoryx2/" }
bindgen = { version = "0.65.1" }
bitflags = { version = "1.3.2" }
cc = { version = "1.0" }
cdr = { version = "0.2.4" }
clap = { version = "3.2.25", features = ["derive"] }
enum-iterator = { version = "1.2.0" }
generic-tests = { version = "0.1.2" }
lazy_static = { version = "1.4.0" }
log = { version = "0.4.20" }
once_cell = { version = "1.16.0" }
ouroboros = { version = "0.17.2" }
pin-init = { version = "0.2.0" }
serde = { version = "1.0.139", features = ["derive"] }
sha1_smol = { version = "1.0.0" }
termsize = { version = "0.1" }
tiny-fn = { version = "0.1.5" }
toml = { version = "0.5.9" }
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"] }
[profile.release]
strip = true
lto = true
# opt-level = "z"
panic = "abort"