global: snapshot

This commit is contained in:
nym21
2025-12-21 23:12:18 +01:00
parent 6e0ac138d8
commit 457b0e24c5
45 changed files with 313 additions and 155 deletions

View File

@@ -13,6 +13,7 @@ full = [
"bencher",
"binder",
"bundler",
"client",
"computer",
"error",
"fetcher",
@@ -33,6 +34,7 @@ full = [
bencher = ["brk_bencher"]
binder = ["brk_binder"]
bundler = ["brk_bundler"]
client = ["brk_client"]
computer = ["brk_computer"]
error = ["brk_error"]
fetcher = ["brk_fetcher"]
@@ -54,6 +56,7 @@ types = ["brk_types"]
brk_bencher = { workspace = true, optional = true }
brk_binder = { workspace = true, optional = true }
brk_bundler = { workspace = true, optional = true }
brk_client = { workspace = true, optional = true }
brk_computer = { workspace = true, optional = true }
brk_error = { workspace = true, optional = true }
brk_fetcher = { workspace = true, optional = true }

View File

@@ -12,6 +12,10 @@ pub use brk_binder as binder;
#[doc(inline)]
pub use brk_bundler as bundler;
#[cfg(feature = "client")]
#[doc(inline)]
pub use brk_client as client;
#[cfg(feature = "computer")]
#[doc(inline)]
pub use brk_computer as computer;