-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (32 loc) · 1.01 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
[package]
name = "dirty-debug"
description = "Quick and dirty debugging"
version = "1.0.1-pre"
authors = ["Diogo Sousa <[email protected]>"]
edition = "2021"
rust-version = "1.80.0"
homepage = "https://github.com/orium/dirty-debug"
repository = "https://github.com/orium/dirty-debug"
documentation = "https://docs.rs/dirty-debug"
readme = "README.md"
keywords = ["debug"]
categories = ["development-tools", "development-tools::debugging"]
license = "MPL-2.0"
# What to include when packaging.
include = ["/src/**/*.rs", "/Cargo.toml", "/LICENSE.md", "/README.md", "/release-notes.md"]
[badges]
codecov = { repository = "orium/dirty-debug", branch = "main", service = "github" }
[features]
fatal-warnings = []
[dependencies]
dashmap = "6.0.1"
[dev-dependencies]
indoc = "2.0.3"
rand = "0.8.5"
[lints.clippy]
all = { level = "warn", priority = -2 }
correctness = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -2 }
inline-always = "allow"
match-bool = "allow"
needless-raw-string-hashes = "allow"