[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.1.0-alpha.1" package.homepage = "https://bitcoinresearchkit.org" package.repository = "https://github.com/bitcoinresearchkit/brk" package.readme = "README.md" [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.bloaty] debug = true lto = false strip = false inherits = "release" [profile.dist] inherits = "release" [profile.profiling] inherits = "release" debug = true [workspace.dependencies] aide = { version = "0.16.0-alpha.1", features = ["axum-json", "axum-query"] } axum = "0.8.8" bitcoin = { version = "0.32.8", features = ["serde"] } bitcoincore-rpc = "0.19.0" brk_bencher = { version = "0.1.0-alpha.1", path = "crates/brk_bencher" } brk_binder = { version = "0.1.0-alpha.1", path = "crates/brk_binder" } brk_bundler = { version = "0.1.0-alpha.1", path = "crates/brk_bundler" } brk_cli = { version = "0.1.0-alpha.1", path = "crates/brk_cli" } brk_computer = { version = "0.1.0-alpha.1", path = "crates/brk_computer" } brk_error = { version = "0.1.0-alpha.1", path = "crates/brk_error" } brk_fetcher = { version = "0.1.0-alpha.1", path = "crates/brk_fetcher" } brk_grouper = { version = "0.1.0-alpha.1", path = "crates/brk_grouper" } brk_indexer = { version = "0.1.0-alpha.1", path = "crates/brk_indexer" } brk_query = { version = "0.1.0-alpha.1", path = "crates/brk_query", features = ["tokio"] } brk_iterator = { version = "0.1.0-alpha.1", path = "crates/brk_iterator" } brk_logger = { version = "0.1.0-alpha.1", path = "crates/brk_logger" } brk_mcp = { version = "0.1.0-alpha.1", path = "crates/brk_mcp" } brk_mempool = { version = "0.1.0-alpha.1", path = "crates/brk_mempool" } brk_reader = { version = "0.1.0-alpha.1", path = "crates/brk_reader" } brk_rpc = { version = "0.1.0-alpha.1", path = "crates/brk_rpc" } brk_server = { version = "0.1.0-alpha.1", path = "crates/brk_server" } brk_store = { version = "0.1.0-alpha.1", path = "crates/brk_store" } brk_types = { version = "0.1.0-alpha.1", path = "crates/brk_types" } brk_traversable = { version = "0.1.0-alpha.1", path = "crates/brk_traversable", features = ["pco", "derive"] } brk_traversable_derive = { version = "0.1.0-alpha.1", path = "crates/brk_traversable_derive" } byteview = "0.9.1" color-eyre = "0.6.5" derive_deref = "1.1.1" fjall = "3.0.0-rc.6" jiff = "0.2.16" log = "0.4.29" mimalloc = { version = "0.1.48", features = ["v3"] } 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"] } smallvec = "1.15.1" tokio = { version = "1.48.0", features = ["rt-multi-thread"] } vecdb = { version = "0.4.4", features = ["derive", "serde_json", "pco"] } # vecdb = { path = "../anydb/crates/vecdb", features = ["derive", "serde_json", "pco", "schemars"] } # vecdb = { git = "https://github.com/anydb-rs/anydb", features = ["derive", "serde_json", "pco"] } [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"]