-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1.16 KB
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 = "puff"
version = "0.1.0"
edition = "2024"
[features]
default = ["builder"]
builder = ["dep:smallvec"]
serde = ["abs-path/serde", "pando/serde", "dep:serde"]
[dependencies]
abs-path = { git = "https://github.com/nomad/abs-path.git" }
fxhash = "0.2"
pando = { git = "https://github.com/nomad/pando.git" }
serde = { version = "1.0", optional = true, features = ["derive"] }
smallvec = { version = "1.0", optional = true }
[dev-dependencies]
abs-path = { git = "https://github.com/nomad/abs-path.git", features = [
"macros",
] }
bincode = { version = "2", features = ["serde"] }
puff = { path = ".", features = ["serde"] }
[lints.clippy]
bool_to_int_with_if = "deny"
cognitive_complexity = "deny"
module_inception = "allow"
multiple_crate_versions = "deny"
needless_collect = "deny"
same_name_method = "deny"
too_many_arguments = "deny"
too_many_lines = "deny"
unwrap_used = "deny"
[lints.rust]
future_incompatible = { level = "deny", priority = -1 }
missing_docs = "deny"
nonstandard_style = { level = "deny", priority = -1 }
refining_impl_trait = { level = "allow", priority = -1 }
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "deny"