-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (45 loc) · 1.05 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "superintervals"
description = "Interval overlap library"
version = "0.2.2"
authors = ["Kez Cleal. <clealk@cardiff.ac.uk>"]
edition = "2021"
repository = "https://github.com/kcleal/superintervals"
homepage = "https://github.com/kcleal/superintervals"
documentation = "https://github.com/kcleal/superintervals"
readme = "README.md"
license-file = "LICENSE"
exclude = [
"test/*",
"src/superintervals/*",
"src/superintervals.egg*",
".idea",
"dist",
"py*", "setup.py", "*.h", "*.hpp", "MANIFEST.in", ".gitignore"
]
[lib]
path = "src/superintervals.rs"
[profile.release]
debug = 0
strip = "symbols"
lto = true
opt-level = 3
codegen-units = 1
[features]
nosimd = []
[profile.dev.package."*"]
opt-level = 3 # Compile dependencies with optimizations on even in debug mode.
[profile.no-opt]
inherits = "dev"
opt-level = 0
[profile.profiling]
inherits = "release"
debug = true
strip = false
[dev-dependencies]
rand = "0.8"
fnv = "1.0.7"
libc = "0.2"
clap = { version = "4.3.7", features = ["derive"] }
[[example]]
name = "bed-intersect-si"