|
root / test / ports / base / hello / package.toml
package.toml TOML 26 lines 508 B
 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
# Hello World Package - Test Port
# This is a simple test package to verify coral build works

[package]
name = "hello"
version = "1.0.1"
release = 1
description = "A simple hello world program for testing coral"
url = "https://github.com/leafscale/zygaena"
license = "MIT"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = []
build = []

[sources]
# No external sources - we include the source directly
urls = []
checksums = []

[build]
parallel = true
jobs = 1