-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 loc) · 1.19 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
# SPDX-FileCopyrightText: The gigtag authors
# SPDX-License-Identifier: MPL-2.0
[package]
name = "gigtag"
description = "A lightweight, textual tagging system for DJs."
version = "0.2.2"
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/uklotzde/gigtag"
keywords = ["music", "dj", "metadata", "tagging"]
categories = ["parser-implementations"]
edition = "2021"
include = ["README.md", "LICENSES/", "src/"]
rust-version = "1.74"
[dependencies]
anyhow = "1.0.95"
compact_str = "0.8.1"
derive_more = { version = "1.0.0", features = ["display", "error"] }
itertools = "0.14.0"
percent-encoding = "2.3.1"
regex = "1.11.1"
time = { version = "0.3.37", features = ["formatting", "macros", "parsing"] }
url = "2.5.4"
[features]
default = []
[lints.rust]
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 = "warn"
clone_on_ref_ptr = "warn"
missing_const_for_fn = "warn"
self_named_module_files = "warn"
# Workaround for <https://github.com/rust-lang/rust-clippy/issues/12270>
lint_groups_priority = "allow"