-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 870 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 870 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
[package]
name = "fluxvm"
version = "0.1.1"
edition = "2021"
authors = ["SuperInstance (DiGennaro et al.)"]
description = "FLUX bytecode runtime — Fluid Language Universal eXecution: a zero-dependency register-based VM with assembler, disassembler, A2A agent protocol, and vocabulary system"
license = "MIT"
repository = "https://github.com/SuperInstance/flux-core"
homepage = "https://github.com/SuperInstance/flux-core"
documentation = "https://docs.rs/fluxvm"
readme = "README.md"
keywords = ["vm", "bytecode", "interpreter", "agent", "a2a"]
categories = ["virtualization", "emulators", "parser-implementations"]
exclude = ["/flux-core", "/message-in-a-bottle", "/for-fleet", "/benches"]
[dependencies]
regex = "1"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "vm_benchmark"
harness = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1