mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 15:19:58 -07:00
19 lines
537 B
TOML
19 lines
537 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.7.5"
|
|
color-eyre = "0.6.3"
|
|
itertools = "0.12.1"
|
|
regex = "1.10.5"
|
|
bincode = { git = "https://github.com/bincode-org/bincode.git" }
|
|
reqwest = { version = "0.12.5", features = ["json"] }
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
serde_json = { version = "1.0.120" }
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
tower-http = { version = "0.5.2", features = ["compression-full"] }
|
|
parser = { path = "../parser" }
|
|
derive_deref = "1.1.1"
|