-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 1.3 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
[workspace]
resolver = "2"
members = [
"src/launch_manager_daemon/lifecycle_client_lib/rust_bindings",
"src/launch_manager_daemon/health_monitor_lib/rust_bindings",
"src/health_monitoring_lib",
"examples/rust_supervised_app",
]
default-members = ["src/health_monitoring_lib"]
[workspace.package]
edition = "2021"
version = "0.0.1"
authors = ["S-CORE Contributors"]
license-file = "LICENSE.md"
[workspace.dependencies]
libc = "0.2.177"
clap = { version = "4.5.49", features = ["derive"] }
signal-hook = "0.3.18"
monitor_rs = { path = "src/launch_manager_daemon/health_monitor_lib/rust_bindings" } # Temporary API
health_monitoring_lib = { path = "src/health_monitoring_lib" }
score_log = { git = "https://github.com/eclipse-score/baselibs_rust.git", tag = "v0.1.1" }
score_testing_macros = { git = "https://github.com/eclipse-score/baselibs_rust.git", tag = "v0.1.1" }
stdout_logger = { git = "https://github.com/eclipse-score/baselibs_rust.git", tag = "v0.1.1" }
containers = { git = "https://github.com/eclipse-score/baselibs_rust.git", tag = "v0.1.1" }
thread = { git = "https://github.com/eclipse-score/baselibs_rust.git", tag = "v0.1.1" }
[workspace.lints.clippy]
std_instead_of_core = "warn"
alloc_instead_of_core = "warn"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }