-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 823 Bytes
/
Cargo.toml
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
[package]
name = "peano-axioms"
version = "0.1.0"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/peano-axioms"
repository = "https://github.com/Spartan2909/peano-axioms"
description = "Type-level numbers based on an extension of the Peano axioms."
keywords = ["number", "type"]
categories = ["no-std", "no-std::no-alloc"]
[dependencies]
local-type-alias = "0.1.4"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
expect_used = "forbid"
inline_always = "allow"
missing_inline_in_public_items = "warn"
module_name_repetitions = "allow"
panic = "forbid"
redundant_pub_crate = "allow"
todo = "forbid"
unimplemented = "forbid"
unreachable = "forbid"
unwrap_used = "forbid"
use_self = "allow"