-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (38 loc) · 1.39 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
[workspace]
resolver = "2"
members = [
"crates/core",
"crates/types",
"crates/eip4844",
"crates/cli",
"crates/wasm",
"crates/rest-api",
]
[workspace.package]
authors = ["Abdelhamid Bakhta <@AbdelStark>"]
edition = "2021"
repository = "https://github.com/AbdelStark/majin-blob"
version = "0.1.0"
[profile.release]
panic = "unwind"
[profile.production]
inherits = "release"
codegen-units = 1 # Setting this to 1 allows for more optimizations at the cost of slower compile time
lto = true # Enables Link Time Optimization, enabling more aggressive optimizations across the entire codebase
opt-level = 3 # Optimize for speed regardless of binary size or compile time
rpath = false # Disables adding rpath to the binary
[workspace.dependencies]
# Internal dependencies
majin-blob-core = { version = "0.1.3", path = "crates/core" }
majin-blob-types = { version = "0.1.3", path = "crates/types" }
majin-blob-eip-4844 = { version = "0.1.3", path = "crates/eip4844" }
# 3rd party dependencies
lazy_static = { version = "1.4.0", default-features = false }
num-bigint = { version = "0.4.0", default-features = false, features = [
"serde",
] }
num-traits = { version = "0.2", default-features = false }
serde_json = { version = "1.0.113", default-features = false, features = [
"alloc",
] }
serde = { version = "1.0.196", default-features = false, features = ["derive"] }