-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 1.07 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 = ["crates/*", "examples/*"]
exclude = ["examples/java-jni-demo"]
[workspace.package]
version = "0.1.50"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/dev-five-git/vespera"
readme = "README.md"
[workspace.dependencies]
vespera_core = { path = "crates/vespera_core", version = "0.1.50" }
vespera_macro = { path = "crates/vespera_macro", version = "0.1.50" }
vespera_inprocess = { path = "crates/vespera_inprocess", version = "0.1.50" }
vespera_jni = { path = "crates/vespera_jni", version = "0.1.50" }
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
# cherry-picked nursery lints
collection_is_never_read = "warn"
option_if_let_else = "warn"
redundant_pub_crate = "warn"
use_self = "warn"
# noisy pedantic lints to allow
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
doc_markdown = "allow"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }