-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
51 lines (44 loc) · 1.05 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
[workspace]
resolver = "2"
members = [
"elfo",
"elfo-core",
"elfo-utils",
"elfo-macros",
"elfo-macros-impl",
"elfo-test",
"elfo-configurer",
"elfo-logger",
"elfo-dumper",
"elfo-telemeter",
"elfo-pinger",
"elfo-network",
"examples",
"benches",
]
[workspace.package]
repository = "https://github.com/elfo-rs/elfo"
authors = ["Paul Loyd <[email protected]>"]
license = "MIT"
edition = "2021"
readme = "README.md"
rust-version = "1.76.0" # update CI if changed
[workspace.dependencies]
tokio = "1.37"
stability = "0.2.0"
metrics = "0.17.1"
dashmap = "6.0.1"
toml = "0.8.14"
bytesize = { version = "1.2.0", features = ["serde"] }
[workspace.dependencies.derive_more]
version = "1"
features = ["constructor", "deref", "display", "error", "from", "into", "is_variant"]
[workspace.lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
unreachable_pub = "warn"
missing_docs = "warn"
unexpected_cfgs = "allow" # for `docsrs`
[workspace.lints.clippy]
undocumented_unsafe_blocks = "warn"
[profile.release]
debug = 1