-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 988 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 988 Bytes
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
[package]
name = "platform-trees"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
authors = ["uselesssgoddess", "Linksplatform Team <linksplatformtechnologies@gmail.com>"]
license = "Unlicense"
repository = "https://github.com/linksplatform/trees-rs"
homepage = "https://github.com/linksplatform/trees-rs"
description = """
Trees methods for linksplatform
"""
readme = "README.md"
keywords = ["trees", "linksplatform", "data-structures"]
categories = ["data-structures"]
[lib]
name = "platform_trees"
path = "src/lib.rs"
[dependencies]
platform-num = "0.8.0"
[lints.rust]
unsafe_code = "allow"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
# Allow some common patterns
module_name_repetitions = "allow"
too_many_lines = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
[profile.release]
lto = true
codegen-units = 1
strip = true