-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 878 Bytes
/
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
[package]
name = "theforgeonsolana"
version = "0.0.1"
description = "burn $COAL to wrap $ORE into $INGOT"
license = "Apache-2.0"
license-file = "LICENSE"
repository = "https://github.com/eliasjudin/theforgeonsolana.git"
keywords = ["solana", "crypto", "blockchain", "wrapping", "defi"]
publish = false
[dependencies]
solana_program = "2.0.6"
anchor-lang = "0.30.1"
anchor-spl = "0.30.1"
thiserror = "1.0.24"
[profile.release]
opt-level = 3 # Full optimisations
codegen-units = 1 # Better optimization with fewer codegen units
lto = true # Enable Link Time Optimization (LTO)
debug = false # Disable debug info to reduce binary size
panic = 'abort' # Reduces the binary size further by not including unwinding information
rpath = false
incremental = false
overflow-checks = false
[build]
rustflags = ["-C", "target-cpu=native"]