Update obisys dependency configuration across multiple crates to explicitly set default-features = false. This restricts compilation to only explicitly enabled feature flags, affecting build resolution and potentially compile-time paths or binary size. Also updates the obikmer package version to 1.3.1.
19 lines
606 B
TOML
19 lines
606 B
TOML
[package]
|
|
name = "obikfilter"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
obikindex = { path = "../obikindex" }
|
|
obicompactvec = { path = "../obicompactvec" }
|
|
obikseq = { path = "../obikseq" }
|
|
obiskio = { path = "../obiskio" }
|
|
obitaxonomy = { path = "../obitaxonomy" }
|
|
obikentropy = { path = "../obikentropy" }
|
|
obikidxcache = { path = "../obikidxcache" }
|
|
obikindexer = { path = "../obikindexer" }
|
|
obidebruinj = { path = "../obidebruinj" }
|
|
obikalgorithm = { path = "../obikalgorithm" }
|
|
obisys = { path = "../obisys", default-features = false }
|
|
tracing = "0.1.44"
|