-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1020 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
[workspace]
resolver = "2"
members = [
"crates/fg-sra-vdb-sys",
"crates/fg-sra-vdb",
"crates/fg-sra",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.85.0"
repository = "https://github.com/fg-labs/fg-sra"
license = "MIT"
[workspace.dependencies]
fg-sra-vdb-sys = { version = "0.1.0", path = "crates/fg-sra-vdb-sys", default-features = false }
fg-sra-vdb = { version = "0.1.0", path = "crates/fg-sra-vdb", default-features = false }
anyhow = "1"
[workspace.lints.clippy]
pedantic = { level = "deny", priority = -1 }
# Allow specific pedantic lints that are too noisy for this codebase.
# FFI and BAM binary encoding require pervasive integer casts that are
# correct by construction but trigger pedantic cast warnings.
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[profile.release]
lto = "fat"
codegen-units = 1