tesla-charge-controller/Cargo.toml

20 lines
693 B
TOML
Raw Normal View History

2024-12-28 18:54:21 +11:00
[workspace]
members = ["charge-controller-supervisor", "tesla-charge-controller"]
default-members = ["charge-controller-supervisor"]
resolver = "2"
2023-12-28 12:41:05 +11:00
2024-12-28 18:54:21 +11:00
[workspace.package]
2024-12-30 22:07:28 +11:00
version = "1.9.9-pre-12"
2024-12-28 13:48:59 +11:00
2024-12-28 18:54:21 +11:00
[workspace.lints.clippy]
2024-12-23 15:51:09 +11:00
pedantic = "warn"
2024-12-30 19:52:11 +11:00
2024-12-23 15:51:09 +11:00
cast-possible-truncation = { level = "allow", priority = 1 }
2024-12-30 19:52:11 +11:00
cast-precision-loss = { level = "allow", priority = 1 }
default-trait-access = { level = "allow", priority = 1 }
2024-12-28 18:54:21 +11:00
missing-errors-doc = { level = "allow", priority = 1 }
missing-panics-doc = { level = "allow", priority = 1 }
2024-12-30 19:52:11 +11:00
module-name-repetitions = { level = "allow", priority = 1 }
struct-excessive-bools = { level = "allow", priority = 1 }
too-many-lines = { level = "allow", priority = 1 }