-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 1.01 KB
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
[package]
name = "rust-prelude-plus"
version = "0.1.0"
edition = "2021"
description = "Higher-order functions built on top of keypaths for type-safe functional programming"
authors = ["Your Name <your.email@example.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/rust-prelude-plus"
keywords = ["functional-programming", "keypaths", "rust", "composable", "prelude"]
categories = ["functional-programming", "data-structures"]
[dependencies]
key-paths-core = "1.0.9"
key-paths-derive = "0.8.0"
serde = { version = "1.0", optional = true, features = ["derive"] }
tokio = { version = "1.0", optional = true, features = ["full"] }
rayon = { version = "1.7", optional = true }
thiserror = "1.0"
futures = { version = "0.3", optional = true }
reqwest = { version = "0.11", optional = true, features = ["json"] }
[features]
default = []
async = ["dep:tokio", "dep:futures", "dep:reqwest", "dep:serde"]
parallel = ["dep:rayon"]
serde = ["dep:serde"]
[dev-dependencies]
criterion = "0.5"
tokio-test = "0.4"