-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 915 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
37
38
39
[workspace]
resolver = "2"
members = [
"crates/cfml-common",
"crates/cfml-compiler",
"crates/cfml-codegen",
"crates/cfml-vm",
"crates/cfml-stdlib",
"crates/cli",
"crates/wasm",
]
[workspace.package]
version = "0.8.1"
authors = ["RustCFML Team"]
edition = "2021"
rust-version = "1.75.0"
repository = "https://github.com/pixl8/RustCFML"
license = "MIT"
[workspace.dependencies]
cfml-common = { path = "crates/cfml-common", version = "0.8.1" }
cfml-compiler = { path = "crates/cfml-compiler", version = "0.8.1" }
cfml-codegen = { path = "crates/cfml-codegen", version = "0.8.1" }
cfml-vm = { path = "crates/cfml-vm", version = "0.8.1" }
cfml-stdlib = { path = "crates/cfml-stdlib", version = "0.8.1" }
log = "0.4"
thiserror = "1.0"
anyhow = "1.0"
parking_lot = "0.12"
indexmap = "2.0"
num-traits = "0.2"
rustc-hash = "1.1"
[profile.release]
lto = "thin"
codegen-units = 1
opt-level = 3