-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 913 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
[workspace]
resolver = "3"
members = ["dverf", "examples/*"]
[workspace.package]
edition = "2024"
authors = ["Danil Karpenko <limpix31@gmail.com>"]
license = "Apache-2.0 OR MIT"
keywords = ["sdr", "ham", "hackrf"]
description = "HackRF One toolkit in pure Rust"
repository = "https://github.com/sigma-logic/dverf.git"
homepage = "https://github.com/sigma-logic/dverf#readme"
[workspace.dependencies]
dverf = { path = "dverf" }
shared = { path = "examples/shared" }
anyhow = { version = "1" }
[workspace.lints.rust]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
all = { level = "warn", priority = -1 }
missing_errors_doc = { level = "allow" }
must_use_candidate = { level = "allow" }
doc_markdown = { level = "allow" }
multiple_crate_versions = { level = "allow" }
cargo_common_metadata = { level = "allow" }
similar_names = { level = "allow" }