scripts: publish

This commit is contained in:
nym21
2025-12-21 13:24:47 +01:00
parent 3aadced85d
commit 5f308e9da7
7 changed files with 49 additions and 11 deletions

View File

@@ -10,7 +10,6 @@ build = "build.rs"
[features]
full = [
"bencher",
"binder",
"bundler",
"computer",
@@ -30,7 +29,6 @@ full = [
"traversable",
"types",
]
bencher = ["brk_bencher"]
binder = ["brk_binder"]
bundler = ["brk_bundler"]
computer = ["brk_computer"]
@@ -51,7 +49,6 @@ 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

@@ -22,7 +22,6 @@ use brk::types::Height;
| Feature | Crate | Description |
|---------|-------|-------------|
| `bencher` | `brk_bencher` | Resource monitoring |
| `binder` | `brk_binder` | Client code generation |
| `bundler` | `brk_bundler` | JS bundling |
| `computer` | `brk_computer` | Metric computation |

View File

@@ -1,9 +1,5 @@
#![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;