-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 958 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 958 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 = "rust-project-template"
version = "0.1.0"
edition = "2024"
authors = ["OpenZeppelin"]
publish = true
description = "project description"
rust-version = "1.85.0"
categories = [
# https://doc.rust-lang.org/cargo/reference/manifest.html#the-categories-field
]
keywords = [
# https://doc.rust-lang.org/cargo/reference/manifest.html#the-keywords-field
]
license = "MIT"
repository = "https://github.com/OpenZeppelin/rust-project-template"
exclude = [".github/", ".vscode/", ".config/", ".cargo/", "benches/", "tests/"]
[dependencies]
[dev-dependencies]
[package.metadata.docs.rs]
all-features = true
[lints.clippy]
pedantic = "warn"
all = "warn"
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
rust_2021_compatibility = { level = "warn", priority = -1 }
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }
[features]
[profile.release]
lto = "thin"
panic = "abort"
codegen-units = 1
strip = true