-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
33 lines (29 loc) · 911 Bytes
/
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
[workspace]
members = ["rearch", "rearch-*", "examples/*"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
description = "Re-imagined approach to application design and architecture"
homepage = "https://rearch.gsconrad.com"
repository = "https://github.com/GregoryConrad/rearch-rs"
keywords = ["design", "architecture", "reactive", "immutable", "dependency-injection"]
categories = ["caching", "concurrency"]
authors = ["Gregory Conrad <[email protected]>"]
readme = "README.md"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
clone_on_ref_ptr = "warn"
unwrap_used = "warn"
# TODO(GregoryConrad): remove the following once tokio's deps are updated.
multiple_crate_versions = { level = "allow", priority = 1}