forked from lloydmeta/frunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (54 loc) · 1.44 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
[package]
name = "frunk"
version = "0.3.2"
authors = ["Lloyd <[email protected]>"]
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.1.36"
[dependencies.frunk_core]
path = "core"
default-features = false
version = "0.3.2"
[dependencies.frunk_proc_macros]
path = "proc-macros"
default-features = false
optional = true
version = "0.0.5"
[dependencies.frunk_derives]
path = "derives"
default-features = false
version = "0.3.2"
[dev-dependencies.frunk_laws]
path = "laws"
default-features = false
version = "0.3.1"
[dependencies]
serde = { version = "^1.0", optional = true, features = [ "derive" ] }
[features]
default = ["validated", "proc-macros"]
validated = ["std"]
proc-macros = ["frunk_proc_macros"]
std = ["frunk_core/std"]
[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-impl",
"proc-macros",
"derives",
"laws"
]