24 lines
540 B
TOML
24 lines
540 B
TOML
[package]
|
|
name = "sigsocket"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "WebSocket server for handling signing operations"
|
|
|
|
[dependencies]
|
|
actix = "0.13.0"
|
|
actix-web = "4.3.1"
|
|
actix-web-actors = "4.2.0"
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
|
secp256k1 = "0.28.0"
|
|
sha2 = "0.10.8"
|
|
hex = "0.4.3"
|
|
base64 = "0.21.0"
|
|
rand = "0.8.5"
|
|
thiserror = "1.0.40"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
log = "0.4.17"
|
|
env_logger = "0.10.0"
|
|
futures = "0.3.28"
|
|
uuid = { version = "1.3.3", features = ["v4"] }
|