bencher: publish = true

This commit is contained in:
nym21
2025-12-21 13:29:59 +01:00
parent 5f308e9da7
commit a37c2474fe
6 changed files with 10 additions and 9 deletions

View File

@@ -10,6 +10,7 @@ build = "build.rs"
[features]
full = [
"bencher",
"binder",
"bundler",
"computer",
@@ -29,6 +30,7 @@ full = [
"traversable",
"types",
]
bencher = ["brk_bencher"]
binder = ["brk_binder"]
bundler = ["brk_bundler"]
computer = ["brk_computer"]
@@ -49,6 +51,7 @@ traversable = ["brk_traversable"]
types = ["brk_types"]
[dependencies]
brk_bencher = { workspace = true, optional = true }
brk_binder = { workspace = true, optional = true }
brk_bundler = { workspace = true, optional = true }
brk_computer = { workspace = true, optional = true }

View File

@@ -1,5 +1,9 @@
#![doc = include_str!("../README.md")]
#[cfg(feature = "bencher")]
#[doc(inline)]
pub use brk_bencher as bencher;
#[cfg(feature = "binder")]
#[doc(inline)]
pub use brk_binder as binder;