-
Notifications
You must be signed in to change notification settings - Fork 0
/
build212.toml
43 lines (39 loc) · 1.11 KB
/
build212.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
[project]
scalaVersion = "2.12.4-bin-typelevel-4"
scalaOptions = ["-Yliteral-types"]
scalaOrganisation = "org.typelevel"
testFrameworks = ["org.scalatest.tools.Framework"]
[module.leaf]
root = "."
targets = ["jvm"]
sources = ["shared/src/"]
scalaDeps = [
["io.circe", "circe-core" , "0.11.1"],
["io.circe", "circe-generic", "0.11.1"],
["io.circe", "circe-parser" , "0.11.1"]
]
[module.leaf-core.jvm]
moduleDeps = ["leaf", "leaf-notebook"]
root = "core"
sources = ["core/src/main/scala"]
scalaDeps = [
["tech.sparse" , "pine" , "0.1.5"],
["org.scalameta", "fastparse", "1.0.1"]
]
javaDeps = [
["com.vladsch.flexmark", "flexmark" , "0.50.32"],
["com.vladsch.flexmark", "flexmark-ext-tables" , "0.50.32"],
["com.vladsch.flexmark", "flexmark-ext-footnotes", "0.50.32"]
]
[module.leaf-core.test.jvm]
sources = ["core/src/test/scala"]
scalaDeps = [
["org.scalatest" , "scalatest" , "3.0.8"]
]
[module.leaf-notebook.jvm]
moduleDeps = ["leaf"]
root = "notebook"
sources = ["notebook/src/main/scala"]
scalaDeps = [
["com.lihaoyi", "sourcecode", "0.1.7"]
]