-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (29 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
30
31
32
33
34
[package]
name = "gpredomics"
version = "0.4.3"
edition = "2021"
[dependencies]
csv = "1.1"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
statrs = "0.16"
rand_chacha = "0.3"
rayon = "1.7"
log = "0.4"
flexi_logger = "0.27"
chrono = "0.4"
signal-hook = "0.3"
[profile.flamegraph]
inherits = "release" # Inherit most settings from the release profile
debug = true # Include debug symbols for detailed profiling
opt-level = 2 # Reduce optimization for better granularity
codegen-units = 1 # Avoid splitting compilation into multiple units
lto = false
[lib]
name = "gpredomics" # Name of your library crate
path = "src/lib.rs" # Path to your library file
[[bin]]
name = "gpredomics" # Name of the binary
path = "src/main.rs" # Path to the binary's main file