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
@@ -1480,7 +1480,7 @@ dependencies = [
[[package]]
name = "obikmer"
version = "1.3.0"
version = "1.3.1"
dependencies = [
"clap",
"csv",
+1 -1
View File
@@ -11,5 +11,5 @@ obikseq = { path = "../obikseq" }
obidebruinj = { path = "../obidebruinj" }
obifastwrite = { path = "../obifastwrite" }
obicompactvec = { path = "../obicompactvec" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
rayon = "1"
+1 -1
View File
@@ -14,5 +14,5 @@ obikidxcache = { path = "../obikidxcache" }
obikindexer = { path = "../obikindexer" }
obidebruinj = { path = "../obidebruinj" }
obikalgorithm = { path = "../obikalgorithm" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
tracing = "0.1.44"
+1 -1
View File
@@ -7,7 +7,7 @@ edition = "2024"
obikseq = { path = "../obikseq" }
obitaxonomy = { path = "../obitaxonomy" }
obiskio = { path = "../obiskio" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
obicompactvec = { path = "../obicompactvec" }
obidebruinj = { path = "../obidebruinj" }
obipipeline = { path = "../obipipeline" }
+1 -1
View File
@@ -9,7 +9,7 @@ obikalgorithm = { path = "../obikalgorithm" }
obikseq = { path = "../obikseq" }
obidebruinj = { path = "../obidebruinj" }
obiskio = { path = "../obiskio" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
obicompactvec = { path = "../obicompactvec" }
obipipeline = { path = "../obipipeline" }
obiread = { path = "../obiread" }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "obikmer"
version = "1.3.0"
version = "1.3.1"
edition = "2024"
[[bin]]
+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"
+1 -1
View File
@@ -7,7 +7,7 @@ edition = "2024"
obikindex = { path = "../obikindex", default-features = false }
obikseq = { path = "../obikseq" }
obiskio = { path = "../obiskio" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
obicompactvec = { path = "../obicompactvec" }
obikidxcache = { path = "../obikidxcache" }
obiskbuilder = { path = "../obiskbuilder" }
+1 -1
View File
@@ -10,5 +10,5 @@ obikfilter = { path = "../obikfilter" }
obikidxcache = { path = "../obikidxcache" }
obikseq = { path = "../obikseq" }
obidebruinj = { path = "../obidebruinj" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
tracing = "0.1.44"
+1 -1
View File
@@ -8,5 +8,5 @@ obikindex = { path = "../obikindex" }
obikfilter = { path = "../obikfilter" }
obikalgorithm = { path = "../obikalgorithm" }
obicompactvec = { path = "../obicompactvec" }
obisys = { path = "../obisys" }
obisys = { path = "../obisys", default-features = false }
tracing = "0.1.44"