23 lines
540 B
TOML
23 lines
540 B
TOML
[package]
|
|
name = "sigsocket-client-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
|
tokio-tungstenite = { version = "0.18.0", features = ["native-tls"] }
|
|
futures-util = "0.3.28"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.10.0"
|
|
secp256k1 = { version = "0.26.0", features = ["rand-std"] }
|
|
sha2 = "0.10.6"
|
|
rand = "0.8.5"
|
|
hex = "0.4.3"
|
|
base64 = "0.21.2"
|
|
actix-web = "4.3.1"
|
|
actix-files = "0.6.2"
|
|
tera = "1.19.0"
|
|
url = "2.4.0"
|