-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1.02 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
[package]
name = "pysylph"
version = "0.1.2"
edition = "2021"
authors = ["Martin Larralde <[email protected]>"]
license = "MIT"
description = "PyO3 bindings and Python interface to sylph, an ultrafast method for containment ANI querying and taxonomic profiling."
repository = "https://github.com/althonos/pysylph"
homepage = "https://github.com/althonos/pysylph/"
readme = "README.md"
categories = ["science"]
keywords = ["bioinformatics", "genomics", "ani", "taxonomy", "profiling"]
[lib]
crate-type = ["cdylib", "rlib"]
path = "src/pysylph/lib.rs"
doctest = false
[dependencies]
pyo3 = "0.22.5"
bincode = "1"
fxhash = "0"
statrs = "0.16"
fastrand = "2"
rayon = "1"
scalable_cuckoo_filter = "0.2"
[dependencies.serde]
features = ["rc"]
version = "1.0"
[dependencies.sylph]
version = "0.7.0"
git = "https://github.com/bluenote-1577/sylph"
tag = "v0.7.0"
# path = "vendor/sylph"
[features]
default = []
extension-module = ["pyo3/extension-module"]
[[test]]
name = "unittest"
path = "src/pysylph/tests/unittest.rs"
harness = false