mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-19 22:34:46 -07:00
bitview: reorg part 9
This commit is contained in:
@@ -11,6 +11,7 @@ build = "build.rs"
|
||||
|
||||
[features]
|
||||
full = [
|
||||
"binder",
|
||||
"bundler",
|
||||
"computer",
|
||||
"error",
|
||||
@@ -24,6 +25,7 @@ full = [
|
||||
"store",
|
||||
"structs",
|
||||
]
|
||||
binder = ["brk_binder"]
|
||||
bundler = ["brk_bundler"]
|
||||
computer = ["brk_computer"]
|
||||
error = ["brk_error"]
|
||||
@@ -38,6 +40,7 @@ store = ["brk_store"]
|
||||
structs = ["brk_structs"]
|
||||
|
||||
[dependencies]
|
||||
brk_binder = { workspace = true, optional = true }
|
||||
brk_bundler = { workspace = true, optional = true }
|
||||
brk_cli = { workspace = true }
|
||||
brk_computer = { workspace = true, optional = true }
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
#![doc = include_str!("../README.md")]
|
||||
|
||||
#[cfg(feature = "binder")]
|
||||
#[doc(inline)]
|
||||
pub use brk_binder as binder;
|
||||
|
||||
#[cfg(feature = "bundler")]
|
||||
#[doc(inline)]
|
||||
pub use brk_bundler as bundler;
|
||||
|
||||
Reference in New Issue
Block a user