-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (41 loc) · 1.3 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
[package]
name = "rafft-rs"
authors = ["Vincent Messow <[email protected]>", "Vaitea Opuu <[email protected]>>", "Nono S. C. Merleau <[email protected]>", "Matteo Smerlak <[email protected]>"]
repository = "https://github.com/strevol-mpi-mis/rafft-rs"
readme = "README.md"
license = "MIT"
description = "RNA structure and folding dynamics prediction using fast Fourier transform."
include = ["src/*", "Cargo.toml", "README.md", "COPYING"]
keywords = ["rna", "bioinformatics", "fft", "secondary-structure"]
categories = ["science"]
version = "0.3.2"
edition = "2021"
[dependencies]
itertools = "0.10"
librna-sys = { version = "0.1" }
#log = "0.4"
ndarray = { version = "0.15", features = ["approx"] } # approx feature needed for tests but that can't be enabled separately & automatically yet
petgraph = "0.6"
pyo3 = { version = "0.16", features = ["extension-module", "abi3"], optional = true }
realfft = "3.0"
clap = { version = "3.0", features = ["derive"] }
thiserror = "1.0"
[dev-dependencies]
approx = "0.4"
[features]
bindings = ["pyo3"]
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
panic = "abort"
incremental = false
codegen-units = 1
# For PyO3 bindings
[lib]
name = "rafft"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "rufft"