-
Notifications
You must be signed in to change notification settings - Fork 58
/
Cargo.toml
69 lines (58 loc) · 1.56 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "frunk"
edition = "2021"
version = "0.4.3"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "Frunk provides developers with a number of functional programming tools like HList, Coproduct, Generic, LabelledGeneric, Validated, Monoid, Semigroup and friends."
license = "MIT"
documentation = "https://docs.rs/frunk"
repository = "https://github.com/lloydmeta/frunk"
keywords = ["Frunk", "HList", "Generic", "Validated", "Monoid"]
readme = "README.md"
[badges]
travis-ci = { repository = "lloydmeta/frunk" }
[dev-dependencies]
time = "0.3"
[dependencies.frunk_core]
path = "core"
default-features = false
version = "0.4.3"
[dependencies.frunk_proc_macros]
path = "proc-macros"
default-features = false
optional = true
version = "0.1.3"
[dependencies.frunk_derives]
path = "derives"
default-features = false
version = "0.4.3"
[dev-dependencies.frunk_laws]
path = "laws"
default-features = false
version = "0.5.2"
[dependencies]
serde = { version = "^1.0", optional = true, features = [ "derive" ] }
[features]
default = ["validated", "proc-macros", "alloc"]
validated = ["alloc"]
proc-macros = ["frunk_proc_macros"]
std = ["alloc", "serde?/std"]
alloc = ["frunk_core/alloc", "serde?/alloc"]
[[example]]
name = "paths"
required-features = ["proc-macros"]
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1 # https://users.rust-lang.org/t/odd-benchmark-results-compiler-optimisation-wall/10503
[workspace]
members = [
"proc-macro-helpers",
"core",
"proc-macros",
"derives",
"laws"
]