-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
edition = "2021"
name = "backend"
version = "0.1.0"
[dependencies]
axum = { version = "0.7" }
bitcoin = { version = "0.32.5", features = [ "serde" ] }
chrono = { version = "0.4.38" }
clap = { version = "4.5", features = [ "derive" ] }
dotenvy = { version = "0.15" }
hex = { version = "0.4" }
jsonrpsee = { version = "0.24", features = [ "http-client" ] }
reqwest = { version = "0.12.12", features = [ "json" ] }
serde = { version = "1", features = [ "derive" ] }
serde_json = { version = "1.0", default-features = false, features = [
"alloc",
"raw_value",
] }
tokio = { version = "1.44.2", features = [ "macros", "rt-multi-thread" ] }
tower-http = { version = "0.6", features = [ "cors" ] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3.18", features = [ "env-filter" ] }
strata-bridge-primitives = { git = "https://github.com/alpenlabs/strata-bridge.git" }
strata-bridge-rpc = { git = "https://github.com/alpenlabs/strata-bridge.git", features = [
"client",
] }
strata-primitives = { git = "https://github.com/alpenlabs/alpen.git" }
[dev-dependencies]
mockito = "1.6.1"
[[bin]]
name = "backend"
path = "src/main.rs"