-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.toml
More file actions
33 lines (28 loc) · 618 Bytes
/
package.toml
File metadata and controls
33 lines (28 loc) · 618 Bytes
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
[package]
name = "eclexia"
version = "0.1.0"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
edition = "2025"
description = "Resource-aware programming language with dimensional type system"
license = "MPL-2.0"
repository = "https://github.com/hyperpolymath/eclexia"
[dependencies]
# No external dependencies yet
[dev-dependencies]
# No dev dependencies yet
[build]
output = "bin"
entry = "src/main.ecl"
[resources]
# Default resource budgets
energy = "10J"
time = "1s"
memory = "100MB"
carbon = "10gCO2e"
[features]
default = ["std", "runtime", "vm"]
std = []
runtime = []
vm = []
jit = []
lsp = []