Reason: It is unused. See https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/.5BRFC.5D.20name.2Fversion.20package.20fields/near/254114011 for more discussion of topic.
11 lines
245 B
Text
11 lines
245 B
Text
import Lake.Package
|
|
|
|
open Lake System
|
|
|
|
def package : PackageConfig := {
|
|
name := "foo"
|
|
dependencies := [
|
|
{ name := "a", src := Source.path (FilePath.mk ".." / "a") },
|
|
{ name := "b", src := Source.path (FilePath.mk ".." / "b") }
|
|
]
|
|
}
|