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.
16 lines
469 B
TOML
16 lines
469 B
TOML
[package]
|
|
name = "obikdump"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
obikindex = { path = "../obikindex" }
|
|
obikfilter = { path = "../obikfilter" }
|
|
obikidxcache = { path = "../obikidxcache" }
|
|
obikseq = { path = "../obikseq" }
|
|
obidebruinj = { path = "../obidebruinj" }
|
|
obifastwrite = { path = "../obifastwrite" }
|
|
obicompactvec = { path = "../obicompactvec" }
|
|
obisys = { path = "../obisys", default-features = false }
|
|
rayon = "1"
|