Explicitly sets `default-features = false` for the `obikindex` dependency to ensure no default features are activated during dependency resolution and compilation.
26 lines
796 B
TOML
26 lines
796 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.16"
|
|
rand = "0.8"
|
|
rayon = "1"
|
|
tracing = "0.1.44"
|
|
|
|
[dev-dependencies]
|
|
obiread = { path = "../obiread" }
|
|
tempfile = "3"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|