-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 1006 Bytes
/
Cargo.toml
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 = "sunspot"
version = "0.2.0"
edition = "2021"
authors = ["Sammy Harris <[email protected]>"]
description = "Proxy server for Solflare Wallet to re-enable custom RPC endpoints"
license = "MIT OR Apache-2.0"
repository = "https://github.com/staratlasmeta/sunspot/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4", features = ["derive", "string"] }
home = "0.5.5"
hudsucker = { version = "0.20.0", features = ["full"] }
hyper = { version = "0.14.27", features = ["full"] }
lazy_static = "1.4.0"
regex = "1.9.5"
reqwest = { version = "0.11.20", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
solana-account-decoder = "1.16.13"
solana-client = "1.16.13"
solana-sdk = "1.16.13"
spl-token = "4.0.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }