Download this file

19 lines (15 with data), 520 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
[package]
name = "noodles_fasta_wrapper"
version = "0.1.2" # Also update the VERSION file when you change the version!
edition = "2021"
[lib]
crate-type = ["cdylib"]
name = "noodles_fasta_wrapper" # The name of the library
path = "rust/src/lib.rs" # Path to the library file
[dependencies]
pyo3 = { version = "0.18", features = ["extension-module"] }
noodles-fasta = "0.45.0" # Update to the latest version of noodles
noodles-core = "*"
memmap2 = "*"
[package.metadata.pyo3]
name = "noodles_fasta_wrapper"