-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (46 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
56 lines (46 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "lighter-rs"
version = "0.1.1"
edition = "2021"
authors = ["Lighter Contributors"]
description = "Rust SDK for Lighter Protocol - A comprehensive trading library for blockchain"
license = "MIT"
repository = "https://github.com/0xvasanth/lighter-rs"
keywords = ["blockchain", "trading", "lighter", "crypto", "defi"]
categories = ["cryptography", "api-bindings"]
[dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP Client
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1.0", features = ["full"] }
# WebSocket Client
tokio-tungstenite = { version = "0.21", features = ["native-tls"] }
futures-util = "0.3"
# Cryptography
hex = "0.4"
sha2 = "0.10"
base64 = "0.22"
# Poseidon cryptography for Lighter Protocol
goldilocks-crypto = "0.1.1"
poseidon-hash = "0.1.3"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time handling
chrono = "0.4"
# Numeric types
num-bigint = "0.4"
num-traits = "0.2"
dotenv = "0.15"
[dev-dependencies]
tokio-test = "0.4"
mockito = "1.0"
dotenv = "0.15"
[lib]
name = "lighter_rs"
path = "src/lib.rs"