-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 944 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 944 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
# SPDX-FileCopyrightText: 2025 {{author_name}} <{{author_email}}>
#
# SPDX-License-Identifier: MIT
[package]
name = "{{project-name}}"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["{{author_name}} <{{author_email}}>"]
description = "{{description}}"
documentation = "https://docs.rs/{{project-name}}"
readme = "README.md"
homepage = "https://github.com/{{gh_username}}/{{project-name}}"
repository = "https://github.com/{{gh_username}}/{{project-name}}"
license = "MIT"
keywords = []
categories = []
include = ["src/**/*", "Cargo.toml", "LICENSE", "README.md", "CHANGELOG.md"]
[lib]
name = "{{crate_name}}"
path = "src/lib.rs"
[dependencies]
[dev-dependencies]
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
cargo_common_metadata = "allow"