-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (19 loc) · 760 Bytes
/
Copy pathCargo.toml
File metadata and controls
22 lines (19 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "process-results"
version = "0.1.2"
edition = "2018"
authors = ["Chang He"]
license = "MIT OR Apache-2.0"
description = """process-results is a crate that provides the same functionality provided by
Itertools::process_results. It helps you process an iterator of results, with a more ergonomic
and composable interface."""
readme = "README.md"
repository = "https://github.com/changhe3/process-results"
keywords = ["iterator", "data-structure", "result"]
categories = ["rust-patterns"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrayvec = { version = "0.7.1", optional = true }
[dev-dependencies]
process-results = { path = ".", features = ["arrayvec"] }
eyre = "0.6.5"