Skip to content

Commit 792c456

Browse files
author
Vanessa McHale
committed
gitignore
1 parent f5a472b commit 792c456

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
*.swp
22
tags
33
*.ibc
4+
elba.lock
5+
target

elba.toml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[package]
2+
name = "vmchale/recursion_schemes"
3+
version = "0.1.0"
4+
authors = ["Vanessa McHale <[email protected]>"]
5+
description = "A recursion schemes library for Idris"
6+
license = "BSD3"
7+
8+
[dependencies]
9+
"vmchale/comonad" = { git = "http://github.com/vmchale/comonad" }
10+
"idris-hackers/free" = { git = "https://github.com/vmchale/idris-free" }
11+
12+
[dev_dependencies]
13+
"git/specdris" = { git = "https://github.com/vmchale/specdris" }
14+
15+
[targets.lib]
16+
path = "."
17+
mods = [ "Data.Functor.Foldable"
18+
, "Data.Functor.Foldable.Exotic"
19+
, "Data.Functor.Foldable.Instances"
20+
, "Data.Functor.Foldable.Mod"
21+
]
22+
idris_opts = ["--warnreach"]
23+
24+
[[targets.test]]
25+
name = "recursion_schemes-test"
26+
main = "Test/Spec.idr"
27+
idris_opts = ["--warnreach"]

0 commit comments

Comments
 (0)