forked from eclipse-score/persistency
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (25 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
34 lines (25 loc) · 763 Bytes
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
[workspace]
resolver = "2"
members = [
"src/rust/rust_kvs",
"src/rust/rust_kvs_tool",
"tests/test_scenarios/rust",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
rust_kvs = { path = "src/rust/rust_kvs" }
rust_kvs_tool = { path = "src/rust/rust_kvs_tool" }
score_log = { git = "https://github.com/eclipse-score/baselibs_rust.git", tag = "v0.1.0", features = [
"qm",
] }
stdout_logger = { git = "https://github.com/eclipse-score/baselibs_rust.git", tag = "v0.1.0" }
adler32 = "1.2.0"
tinyjson = "2.5.1"
pico-args = "0.5"
[workspace.lints.clippy]
std_instead_of_core = "warn"
alloc_instead_of_core = "warn"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }