-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (45 loc) · 1.55 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
52
53
54
# SPDX-FileCopyrightText: The audio-viz authors
# SPDX-License-Identifier: MPL-2.0
[package]
name = "audio-viz"
description = "Colorful audio waveform visualization"
version = "0.8.6"
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/uklotzde/audio-viz"
keywords = ["audio", "waveform", "visualization", "color"]
categories = ["multimedia::audio"]
rust-version = "1.75"
edition = "2021"
include = ["/src", "/README.md", "/LICENSES"]
[dependencies]
biquad = "0.5.0"
[lints.rust]
# Opt-in for allowed-by-default lints (in alphabetical order)
# See also: <https://doc.rust-lang.org/rustc/lints>
future_incompatible = "warn"
let_underscore = "warn"
missing_debug_implementations = "warn"
rust_2018_idioms = "warn"
rust_2021_compatibility = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"
unused = "warn"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
clone_on_ref_ptr = "warn"
missing_const_for_fn = "warn"
self_named_module_files = "warn"
# Repetitions of module/type names occur frequently when using many
# modules for keeping the size of the source files handy. Often
# types have the same name as their parent module.
module_name_repetitions = "allow"
# Repeating the type name in `Default::default()` expressions
# is not needed as long as the context is obvious.
default_trait_access = "allow"
# The error types returned should be self-explanatory.
missing_errors_doc = "allow"
# Inevitable for short names.
similar_names = "allow"
# Workaround for <https://github.com/rust-lang/rust-clippy/issues/12270>
lint_groups_priority = "allow"