-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.53 KB
/
Cargo.toml
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
44
45
46
47
48
49
# We use a workspace to centralize dependency and metadata management for the crates in this
# workspace.
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/compiler",
"crates/driver",
"crates/error",
"crates/flo",
"crates/rust-test-input",
]
# Here we set keys that are relevant across all packages, allowing them to be inherited.
[workspace.package]
version = "0.1.0"
homepage = "https://github.com/reilabs/hieratika"
repository = "https://github.com/reilabs/hieratika"
license-file = "LICENSE"
authors = ["Reilabs"]
keywords = ["compiler", "starknet", "starkware"]
categories = ["compilers", "virtualization", "cryptography::cryptocurrencies"]
edition = "2021"
rust-version = "1.81.0"
# Dependencies that are used by more than one crate are specified here, allowing us to ensure that
# we match versions in all crates.
[workspace.dependencies]
anyhow = "1.0.89"
ariadne = "0.4.1"
bimap = { version = "0.6.3", features = ["serde"] }
clap = "4.5.16"
ethnum = "1.5.0"
inkwell = { version = "0.5.0", features = ["llvm18-0"] }
itertools = "0.13.0"
hieratika-cli = { path = "crates/cli" }
hieratika-compiler = { path = "crates/compiler" }
hieratika-driver = { path = "crates/driver" }
hieratika-errors = { path = "crates/error" }
hieratika-flo = { path = "crates/flo" }
thiserror = "1.0.63"
tracing = "0.1.40"
[profile.release]
debug = true # Include full debug information in release builds.
overflow-checks = true # Keep overflow checks in production builds.
lto = "thin" # Thin LTO performs cheaper cross-crate LTO.