forked from deepcausality-rs/deep_causality
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (68 loc) · 1.7 KB
/
Cargo.toml
File metadata and controls
84 lines (68 loc) · 1.7 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "deep_causality_haft"
version = "0.2.4"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = "https://github.com/deepcausality/deep_causality.rs"
authors = ["Marvin Hansen <marvin.hansen@gmail.com>"]
description = "HKT traits for for the deep_causality crate."
documentation = "https://docs.rs/deep_causality"
categories = ["development-tools"]
keywords = ["HKT", "traits"]
# Exclude all bazel files as these conflict with Bazel workspace when vendored.
exclude = [
"*.bazel",
"*/*.bazel",
"*.bazel.*",
"BUILD",
"BUILD.bazel",
"MODULE.bazel",
".bazelignore",
".bazelrc",
"tests/**/*",
]
[features]
default = ["std"]
std = ["alloc", "deep_causality_num/std"]
alloc = []
[dependencies.deep_causality_num]
path = "../deep_causality_num"
version = "0.1.8"
default-features = false
[[example]]
name = "haft_applicative"
path = "examples/applicative.rs"
[[example]]
name = "haft_foldable"
path = "examples/foldable.rs"
[[example]]
name = "haft_monad"
path = "examples/monad.rs"
[[example]]
name = "haft_functor"
path = "examples/functor.rs"
[[example]]
name = "haft_comonad"
path = "examples/comonad.rs"
[[example]]
name = "haft_traversable"
path = "examples/traversable.rs"
[[example]]
name = "haft_adjunction"
path = "examples/adjunction.rs"
[[example]]
name = "haft_parametric_monad"
path = "examples/parametric_monad.rs"
[[example]]
name = "haft_bifunctor"
path = "examples/bifunctor.rs"
[[example]]
name = "haft_profunctor"
path = "examples/profunctor.rs"
[[example]]
name = "haft_effect_system_example"
path = "examples/effect_system.rs"
[[example]]
name = "haft_unbound_example"
path = "examples/unbound_haft.rs"