-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 717 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 717 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
[package]
name = "counter"
version = "0.7.1"
authors = ["Peter Goodspeed-Niklaus <peter.r.goodspeedniklaus@gmail.com>"]
description = "Simple package to count generic iterables"
repository = "https://github.com/coriolinus/counter-rs"
documentation = "https://docs.rs/counter"
readme = "README.md"
keywords = ["count", "multiset", "bag", "counter"]
license = "MIT"
edition = "2021"
[dependencies]
num-traits = "0.2"
serde = { version = "1.0.228", optional = true }
[dev-dependencies]
maplit = "1.0"
rand = "0.9.2"
serde_json = "1.0.145"
[workspace.metadata.release]
# ensure we have run `git-cliff` recently, but do not clobber existing documentation
pre-release-hook = ["rg", "-Fw", "{{version}}", "CHANGELOG.md"]