-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 764 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
[package]
name = "executor-node"
version = "0.1.0"
edition = "2021"
rust-version = "1.88"
description = "IAM Protocol executor node — relayer service for walletless verification"
[dependencies]
axum = "0.8"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
solana-client = "2.2"
solana-sdk = "2.2"
borsh = { version = "1", features = ["derive"] }
dotenvy = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
thiserror = "2"
rand = "0.8"
subtle = "2"
bs58 = "0.5"
governor = "0.8"
dashmap = "6"
futures-util = "0.3"
[dev-dependencies]
reqwest = { version = "0.12", features = ["json"] }