mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-30 09:30:00 -07:00
19 lines
459 B
TOML
19 lines
459 B
TOML
[package]
|
|
name = "brk_traversable"
|
|
description = "Traits for Vecs structs throughout BRK"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
build = "build.rs"
|
|
|
|
[features]
|
|
derive = ["brk_traversable_derive"]
|
|
|
|
[dependencies]
|
|
brk_structs = { workspace = true }
|
|
brk_traversable_derive = { workspace = true, optional = true }
|
|
vecdb = { workspace = true }
|