-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 1003 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 1003 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
[package]
name = "bounded-counter"
version = "0.2.0"
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
edition = "2021"
rust-version = "1.60"
description = "Generic Incremental Bounded Counter"
readme = "README.md"
homepage = "https://git.shaybox.com/bounded-counter"
repository = "https://github.com/shaybox/bounded-counter"
license = "MIT"
keywords = ["generic", "Incremental", "bounded", "counter"]
categories = ["data-structures", "mathematics", "rust-patterns"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derive_more = { version = "2", optional = true }
num-traits = "0.2"
[features]
default = []
constructor = ["derive_more/constructor"]
deref_mut = ["derive_more/deref_mut"]
deref = ["derive_more/deref"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }