mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
25 lines
841 B
TOML
25 lines
841 B
TOML
[package]
|
|
name = "brk_server"
|
|
description = "A server that serves Bitcoin data and swappable front-ends, built on top of brk_indexer, brk_fetcher and brk_computer"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
axum = "0.8.1"
|
|
brk_computer = { workspace = true }
|
|
brk_exit = { workspace = true }
|
|
brk_indexer = { workspace = true }
|
|
brk_logger = { workspace = true }
|
|
brk_parser = { workspace = true }
|
|
brk_query = { workspace = true }
|
|
brk_vec = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
jiff = { workspace = true }
|
|
log = { workspace = true }
|
|
oxc = { version = "0.53.0", features = ["codegen", "minifier"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
tower-http = { version = "0.6.2", features = ["compression-full"] }
|