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.
41 lines
1.3 KiB
TOML
41 lines
1.3 KiB
TOML
[package]
|
|
name = "obikmer"
|
|
version = "1.3.1"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "obikmer"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
obikseq = { path = "../obikseq" }
|
|
obiread = { path = "../obiread" }
|
|
obipipeline = { path = "../obipipeline" }
|
|
obisys = { path = "../obisys", default-features = false }
|
|
obikindex = { path = "../obikindex", default-features = false }
|
|
obikindexer = { path = "../obikindexer" }
|
|
obikalgorithm = { path = "../obikalgorithm" }
|
|
obikmerge = { path = "../obikmerge" }
|
|
obikfilter = { path = "../obikfilter" }
|
|
obikselect = { path = "../obikselect" }
|
|
obikdump = { path = "../obikdump" }
|
|
obikrebuild = { path = "../obikrebuild" }
|
|
obikstats = { path = "../obikstats" }
|
|
obikquery = { path = "../obikquery" }
|
|
obikidxcache = { path = "../obikidxcache" }
|
|
obikphylo = { path = "../obikphylo" }
|
|
obikrope = { path = "../obikrope" }
|
|
obifastwrite = { path = "../obifastwrite" }
|
|
obiskbuilder = { path = "../obiskbuilder" }
|
|
clap = { version = "4", features = ["derive"] }
|
|
csv = "1"
|
|
ndarray = "0.17"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
|
|
|
[features]
|
|
default = ["numa"]
|
|
numa = ["obisys/numa"]
|