-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 882 Bytes
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
[package]
name = "grumpy"
version = "1.1.4"
edition = "2021"
description = "Genetic analysis in Rust."
license-file = "LICENSE"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gb-io = "0.9.0"
ordered-float = "4.2.1"
string_cache = "0.8.7"
vcf = "0.6.1"
pyo3 = { version = "0.25.0", features = ["extension-module"] }
pretty_assertions = "1.4.0"
rayon = "1.10.0"
clap = { version = "4.5.40", features = ["derive"] }
[profile.dev]
opt-level = 3
debug = 1
lto = true
[profile.release]
opt-level = 3
debug-assertions = true # Required else lto gives no optimisations???
lto = true
[lib]
name = "grumpy"
crate-type = ["cdylib", "rlib"]
[lints.rust]
# Used for ignoring boilerplate parts of py03 bindings + main function
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }