1a839a295a
Refactor the Gitea release pipeline to generate releases via API and upload binaries using a shared ID. Automate changelog generation by fetching recent commits with `jj log` and producing markdown notes via `aichat`. Convert `hwlocality` to an optional dependency gated by a default `numa` feature, providing fallback implementations for graceful degradation when NUMA support is disabled. Bump obikmer to 1.1.18.
25 lines
719 B
TOML
25 lines
719 B
TOML
[package]
|
|
name = "obikindex"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
obikseq = { path = "../obikseq" }
|
|
obikpartitionner = { path = "../obikpartitionner" }
|
|
obiskio = { path = "../obiskio" }
|
|
obisys = { path = "../obisys" }
|
|
obicompactvec = { path = "../obicompactvec" }
|
|
obilayeredmap = { path = "../obilayeredmap" }
|
|
ndarray = "0.16"
|
|
rayon = "1"
|
|
crossbeam-channel = "0.5"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
indicatif = "0.17"
|
|
tracing = "0.1.44"
|
|
hwlocality = { version = "1.0.0-alpha.11", features = ["vendored"], optional = true }
|
|
|
|
[features]
|
|
default = ["numa"]
|
|
numa = ["hwlocality"]
|