-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (40 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
49 lines (40 loc) · 1.29 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
[package]
name = "algar"
authors = ["Stefano Candori <stefano.candori@prima.it>"]
description = "Algebraic structures, higher-kinded types and other category theory bad ideas"
version = "0.4.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/cando/Algar"
homepage = "https://github.com/cando/Algar"
keywords = ["category-theory", "monad", "monad-transformers", "tagless", "free-monads"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[[example]]
name = "turtle_operations"
path = "examples/turtle/turtle_operations.rs"
test = true
[[example]]
name = "0_expr_base"
path = "examples/expression_problem/0_expr_base.rs"
test = true
[[example]]
name = "1_expr_base_b"
path = "examples/expression_problem/1_expr_base_b.rs"
test = true
[[example]]
name = "2_expr_coproduct_of_functors"
path = "examples/expression_problem/2_expr_coproduct_of_functors.rs"
test = true
[[example]]
name = "3_expr_coproduct_of_functors_b"
path = "examples/expression_problem/3_expr_coproduct_of_functors_b.rs"
test = true
[[example]]
name = "4_expr_object_algebras"
path = "examples/expression_problem/4_expr_object_algebras.rs"
test = true
[[example]]
name = "5_expr_final_tagless"
path = "examples/expression_problem/5_expr_final_tagless.rs"
test = true