-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 992 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (39 loc) · 992 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
40
41
42
43
[workspace]
members = [
"crates/lirien-core",
"crates/lirien-ir",
"crates/lirien-verify",
"crates/lirien-backend",
"crates/lirien-bridge"
]
resolver = "2"
[workspace.package]
version = "0.1.1"
edition = "2021"
authors = ["Seuriin <seuriin@gmail.com>"]
description = "A Verifying JIT Compiler for a Safe Subset of Python via Z3 and Cranelift"
repository = "https://github.com/SSL-ACTX/Lirien"
homepage = "https://github.com/SSL-ACTX/Lirien"
documentation = "https://github.com/SSL-ACTX/Lirien"
readme = "README.md"
keywords = ["compiler", "verification", "jit", "python", "z3"]
categories = ["compilers", "development-tools"]
license = "AGPL-3.0-only"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"
seahash = "4.1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 1
debug = 0
strip = true
panic = "unwind"
incremental = true
lto = false
codegen-units = 256