-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 948 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
34
35
36
37
38
39
[package]
name = "rpm-timer"
version = "0.0.2"
authors = ["Marcin Sas-Szymanski <[email protected]>"]
description = "Small and simple to use tool that limits your processing speed to specified number of items per minute (or per second). Perfect for rate-limited APIs."
keywords = ["timer", "periodically", "rpm", "rate", "limit"]
categories = []
readme = "README.md"
license = "MIT"
repository = "https://github.com/synek317/rpm-timer"
documentation = "https://docs.rs/rpm-timer"
[badges]
travis-ci = { repository = "synek317/rpm-timer", branch = "master" }
maintenance = { status = "actively-developed" }
[lib]
doctest = false
path = "src/lib.rs"
[[example]]
name = "000_hello"
path = "examples/000_hello.rs"
[[example]]
name = "001_slice"
path = "examples/001_slice.rs"
[[example]]
name = "002_iter"
path = "examples/002_iter.rs"
[dependencies]
scoped-pool = "1.0.0"
num_cpus = "1.7.0"
[dev-dependencies]
chrono = "0.4.0"
rand = "0.3.18"