Update all dependent crates and internal imports to reference the renamed module. Expose configuration parameters and genome metadata through new public accessor methods in the index API, and update documentation comments to align with the new package name.
26 lines
797 B
TOML
26 lines
797 B
TOML
[package]
|
|
name = "obikphylo"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
obikindex = { path = "../obikindex", default-features = false }
|
|
obikseq = { path = "../obikseq" }
|
|
obikpartitionner = { path = "../obikpartitionner" }
|
|
obiskio = { path = "../obiskio" }
|
|
obisys = { path = "../obisys" }
|
|
obicompactvec = { path = "../obicompactvec" }
|
|
obilayeredmap = { path = "../obilayeredmap" }
|
|
obiskbuilder = { path = "../obiskbuilder" }
|
|
obipipeline = { path = "../obipipeline" }
|
|
memmap2 = "0.9"
|
|
ndarray = "0.17"
|
|
rand = "0.10"
|
|
rayon = "1"
|
|
tracing = "0.1.44"
|
|
|
|
[dev-dependencies]
|
|
obiread = { path = "../obiread" }
|
|
tempfile = "3"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|