Adds an alternative TOML configuration format to Lake. * Uses TOML v1.0.0 and is fully specification compliant (tested via [toml-test v1.4.0](https://github.com/toml-lang/toml-test/tree/v1.4.0)). * Supports package configuration options, Lean libraries, Lean executables, and dependencies. * TOML configurations can be generated for new projects via `lake new|init <pkg> <template>.toml`. * Supported configurations can be converted to/from TOML via `lake translate-config <lang>`.
11 lines
260 B
Text
11 lines
260 B
Text
/-
|
|
Copyright (c) 2021 Mac Malone. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Mac Malone
|
|
-/
|
|
import Lake.Build
|
|
import Lake.Config
|
|
import Lake.DSL
|
|
import Lake.Version
|
|
import Lake.CLI.Actions
|
|
import Lake.Toml
|