-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.toml
30 lines (24 loc) · 1.09 KB
/
manifest.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
# Manifest contains metadata about the driver. To learn about the different
# values in this manifest refer to:
# https://github.com/bblfsh/sdk/blob/master/manifest/manifest.go
language = "lua"
# status describes the current development status of the driver, the valid
# values for status are: `planning`, `pre-alpha`, `alpha`, `beta`, `stable`,
# `mature` or `inactive`.
status = "planning"
# documentation block is use to render the README.md file.
[documentation]
description = """
lua driver for [babelfish](https://github.com/bblfsh/server).
"""
[runtime]
# os defines in with distribution the runtime is executed (and the build
# system). The valid values are `alpine` and `debian`. Alpine is preferred
# since is a micro-distribution, but sometimes is hard or impossible to use
# due to be based on musl and not it libc.
os = "alpine"
# go_version describes the version being use to build the driver Go code.
go_version = "1.8"
# native_version describes the version or versions being use to build and
# execute the native code, you should define at least one. (eg.: "1.8").
native_version = ["5.3"]