-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 913 Bytes
/
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
[package]
name = "is_printable"
version = "0.0.11"
description = "Determine whether a given text-based value is printable."
keywords = ["is_printable", "char", "utf8", "ascii", "printable"]
# categories = []
repository = "https://github.com/amab8901/is_printable"
documentation = "https://docs.rs/is_printable"
authors = ["Amir Abdin <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.80.0"
[dependencies]
colored = "2.1.0"
[lints.clippy]
let_and_return = "allow"
module_name_repetitions = "allow"
similar_names = "allow"
must_use_candidate = "allow"
missing_inline_inpublic_items = "allow"
std_instead_of_core = "allow"
non_exhaustive_structs = "allow"
mod_module_files = "allow"
self_named_module_files = "allow"
too_many_arguments = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
pedantic = { level = "warn", priority = -1 }