-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (26 loc) · 917 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
[package]
name = "currying"
version = "0.3.5"
edition = "2021"
license = "MIT"
keywords = ["function", "fp", "curry", "currying", "haskell"]
categories = ["rust-patterns", "algorithms", "mathematics", "no-std::no-alloc"]
description = "A crate for currying anything implementing `FnOnce`. Arguments can be passed one at a time, yielding a new something implementing `FnOnce` (and possibly `FnMut` and `Fn`) which can be called with one less argument."
repository = "https://github.com/sigurd4/currying"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "currying"
[lints.rust]
unsafe_code = "forbid"
[badges]
maintainence = {status = "as-is"}
[features]
default = ["rcurry", "const"]
experimental = ["async", "const"]
async = []
const = []
pedantic = []
rcurry = []
[dependencies]
moddef = "0.2.6"
tupleops = {version = "0.1.1", features = ["concat"]}