mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
93 lines
3.7 KiB
TOML
93 lines
3.7 KiB
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["crates/*"]
|
|
package.description = "The Bitcoin Research Kit is a suite of tools designed to extract, compute and display data stored on a Bitcoin Core node"
|
|
package.license = "MIT"
|
|
package.edition = "2024"
|
|
package.version = "0.0.111"
|
|
package.homepage = "https://bitcoinresearchkit.org"
|
|
package.repository = "https://github.com/bitcoinresearchkit/brk"
|
|
package.readme = "README.md"
|
|
package.rust-version = "1.90"
|
|
|
|
[profile.dev]
|
|
lto = "thin"
|
|
codegen-units = 16
|
|
opt-level = 2
|
|
split-debuginfo = "unpacked"
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
overflow-checks = false
|
|
|
|
[profile.dist]
|
|
inherits = "release"
|
|
|
|
[workspace.dependencies]
|
|
aide = { version = "0.15.2", features = ["axum-json", "axum-query"], package = "brk-aide" }
|
|
allocative = { version = "0.3.4", features = ["parking_lot"] }
|
|
axum = "0.8.6"
|
|
bitcoin = { version = "0.32.7", features = ["serde"] }
|
|
bitcoincore-rpc = "0.19.0"
|
|
brk_binder = { version = "0.0.111", path = "crates/brk_binder" }
|
|
brk_bundler = { version = "0.0.111", path = "crates/brk_bundler" }
|
|
brk_cli = { version = "0.0.111", path = "crates/brk_cli" }
|
|
brk_computer = { version = "0.0.111", path = "crates/brk_computer" }
|
|
brk_error = { version = "0.0.111", path = "crates/brk_error" }
|
|
brk_fetcher = { version = "0.0.111", path = "crates/brk_fetcher" }
|
|
brk_grouper = { version = "0.0.111", path = "crates/brk_grouper" }
|
|
brk_indexer = { version = "0.0.111", path = "crates/brk_indexer" }
|
|
brk_query = { version = "0.0.111", path = "crates/brk_query", features = ["tokio"] }
|
|
brk_iterator = { version = "0.0.111", path = "crates/brk_iterator" }
|
|
brk_logger = { version = "0.0.111", path = "crates/brk_logger" }
|
|
brk_mcp = { version = "0.0.111", path = "crates/brk_mcp" }
|
|
brk_monitor = { version = "0.0.111", path = "crates/brk_monitor" }
|
|
brk_reader = { version = "0.0.111", path = "crates/brk_reader" }
|
|
brk_rpc = { version = "0.0.111", path = "crates/brk_rpc" }
|
|
brk_server = { version = "0.0.111", path = "crates/brk_server" }
|
|
brk_store = { version = "0.0.111", path = "crates/brk_store" }
|
|
brk_types = { version = "0.0.111", path = "crates/brk_types" }
|
|
brk_traversable = { version = "0.0.111", path = "crates/brk_traversable", features = ["derive"] }
|
|
brk_traversable_derive = { version = "0.0.111", path = "crates/brk_traversable_derive" }
|
|
byteview = "=0.6.1"
|
|
# byteview = "~0.8.0"
|
|
derive_deref = "1.1.1"
|
|
fjall2 = { version = "2.11.5", package = "brk_fjall" }
|
|
# fjall2 = { path = "../fjall2", package = "brk_fjall" }
|
|
# fjall2 = { version = "2.11.2", package = "fjall" }
|
|
# fjall3 = { version = "=3.0.0-pre.0", package = "fjall" }
|
|
fjall3 = { path = "../fjall3", package = "brk_fjall" }
|
|
# fjall3 = { git = "https://github.com/fjall-rs/fjall.git", rev = "bb15057500dce3115d7644d268b9deeaa895b431", package = "fjall" }
|
|
jiff = "0.2.15"
|
|
log = "0.4.28"
|
|
minreq = { version = "2.14.1", features = ["https", "serde_json"] }
|
|
parking_lot = "0.12.5"
|
|
rayon = "1.11.0"
|
|
rustc-hash = "2.1.1"
|
|
schemars = "1.1.0"
|
|
serde = "1.0.228"
|
|
serde_bytes = "0.11.19"
|
|
serde_derive = "1.0.228"
|
|
serde_json = { version = "1.0.145", features = ["float_roundtrip"] }
|
|
sonic-rs = "0.5.6"
|
|
tokio = { version = "1.48.0", features = ["rt-multi-thread"] }
|
|
# vecdb = { path = "../seqdb/crates/vecdb", features = ["derive"] }
|
|
vecdb = { version = "0.3.7", features = ["derive"] }
|
|
zerocopy = { version = "0.8.27", features = ["derive"] }
|
|
|
|
[workspace.metadata.release]
|
|
shared-version = true
|
|
tag-name = "v{{version}}"
|
|
pre-release-commit-message = "release: v{{version}}"
|
|
tag-message = "release: v{{version}}"
|
|
|
|
[workspace.metadata.dist]
|
|
cargo-dist-version = "0.30.2"
|
|
ci = "github"
|
|
allow-dirty = ["ci"]
|
|
installers = []
|
|
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-unknown-linux-gnu"]
|