-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 721 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
34
35
36
[workspace]
resolver = "2"
members = [
"crates/flux-fir",
"crates/flux-parser",
"crates/flux-bytecode",
"crates/flux-vm",
".",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
rust-version = "1.75"
[workspace.dependencies]
thiserror = "2"
[package]
name = "flux"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "FLUX — Fluid Language Universal eXecution runtime"
[[bin]]
name = "flux"
path = "src/bin/flux.rs"
[dependencies]
flux-bytecode = { path = "crates/flux-bytecode" }
flux-vm = { path = "crates/flux-vm" }
flux-fir = { path = "crates/flux-fir" }
flux-parser = { path = "crates/flux-parser" }