-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (38 loc) · 1.07 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
[package]
name = "pyskani"
version = "0.1.3"
authors = ["Martin Larralde <[email protected]>"]
license = "MIT"
description = "PyO3 bindings and Python interface to skani, a method for fast fast genomic identity calculation using sparse chaining."
repository = "https://github.com/althonos/pyskani"
homepage = "https://github.com/althonos/pyskani/"
readme = "README.md"
categories = ["science"]
keywords = ["bioinformatics", "genomics", "average", "nucleotide", "identity"]
publish = false
edition = "2021"
build = "src/pyskani/_skani/build.rs"
[lib]
crate-type = ["cdylib", "rlib"]
path = "src/pyskani/_skani/lib.rs"
doctest = false
[build-dependencies.built]
version = "0.7.3"
features = ["chrono", "cargo-lock"]
[dependencies]
bincode = "1.3.3"
pyo3 = "0.22.5"
pyo3-built = "0.5.0"
[dependencies.skani]
version = "0.2.2"
git = "https://github.com/bluenote-1577/skani"
default-features = false
tag = "v0.2.2"
[features]
default = []
extension-module = ["pyo3/extension-module"]
nightly = ["pyo3/nightly"]
[[test]]
name = "unittest"
path = "src/pyskani/tests/unittest.rs"
harness = false