-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 977 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (32 loc) · 977 Bytes
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
[package]
name = "stellar-insights-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = "0.30"
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
prometheus = "0.14"
log = "0.4"
env_logger = "0.11"
thiserror = "2"
lazy_static = "1.4"
async-trait = "0.1"
chrono = "0.4"
hex = "0.4"
stellar-xdr = { version = "=27.0.0", default-features = false, features = ["alloc", "std"] }
tracing = "0.1.44"
tracing-futures = "0.2.5"
opentelemetry = "0.32.0"
opentelemetry_sdk = "0.32.1"
tracing-opentelemetry = "0.33.0"
opentelemetry-stdout = "0.32.0"
redis = { version = "0.27", features = ["tokio-comp", "aio"] }
libc = "0.2"
[dev-dependencies]
soroban-sdk = { version = "=27.0.6", features = ["testutils"] }
stellar-insights = { path = "../contracts/stellar_insights", features = ["testutils"] }
tracing-subscriber = { version = "0.3", features = ["registry"] }
tempfile = "3"