-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 882 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
[package]
name = "ruspy"
version = "0.1.0"
description = "Rust like efficiency with python like syntax"
edition = "2021"
authors = ["Himanshu <github: Himasnhu-at, email: hyattherate2005@gmail.com"]
readme = "https://github.com/Himasnhu-at/ruspy.git/#readme"
homepage = "https://github.com/Himasnhu-at/ruspy.git/#readme"
repository = "https://github.com/Himasnhu-at/ruspy.git"
license = "BSD-Clause-3"
[dependencies]
dotenv = "0.15.0"
env_logger = "0.11.5"
log = "0.4.22"
clap = { version = "4.4", features = ["derive"] }
[profile.release]
opt-level = 3 # Maximum optimization
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce parallel code generation units to increase optimization
panic = 'abort' # Remove panic unwinding to reduce binary size
strip = true # Strip symbols from binary
[[bin]]
name = "ruspy"
path = "src/main.rs"