-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (54 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (54 loc) · 1.19 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "uuid7-rs"
version = "0.0.10"
edition = "2024"
build = "build.rs"
[lib]
name = "_core"
crate-type = ["cdylib"]
[build-dependencies]
pyo3-build-config = "=0.29.0"
[dependencies.pyo3]
version = "=0.29.0"
[target."cfg(windows)".dependencies]
windows-link = "=0.2.1"
[dependencies.rand]
version = "=0.10.1"
default-features = false
features = [
"std_rng",
"sys_rng",
]
[dependencies.mimalloc]
optional = true
version = "=0.1.52"
features = [
"override",
"local_dynamic_tls",
]
[features]
default = []
mimalloc = ["dep:mimalloc"]
[profile.release]
opt-level = 3
lto = "fat"
panic = "abort"
strip = "symbols"
codegen-units = 1
[lints.rust]
warnings = "deny"
[lints.clippy]
perf = { level = "deny", priority = 1 }
style = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
allow_attributes = "deny"
disallowed_types = "deny"
too_many_lines = "allow"
manual_let_else = "allow"
cast_possible_truncation = "allow"
missing_const_for_fn = "allow"
similar_names = "allow"
cast_ptr_alignment = "allow"