disable default features for obisys dependency
Release / create-release (push) Successful in 2m32s
Release / build-linux-x86_64 (push) Successful in 7m57s
Release / build-macos-arm64 (push) Successful in 1m53s
ci.yml / build (pull_request) Successful in 3m42s

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.
This commit is contained in:
Eric Coissac
2026-08-29 08:13:49 +02:00
parent 77d4429645
commit 8bb1d52514
10 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ obicompactvec = { path = "../obicompactvec" }
obiskio = { path = "../obiskio" }
obikseq = { path = "../obikseq" }
obipipeline = { path = "../obipipeline" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
rayon = "1"
tracing = "0.1.44"