22 lines
479 B
TOML
22 lines
479 B
TOML
[package]
|
|
name = "sigsocket-web-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
sigsocket = { path = "../.." }
|
|
actix-web = "4.3.1"
|
|
actix-rt = "2.8.0"
|
|
actix-files = "0.6.2"
|
|
actix-web-actors = "4.2.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
env_logger = "0.10.0"
|
|
log = "0.4"
|
|
tera = "1.19.0"
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
|
dotenv = "0.15.0"
|
|
hex = "0.4.3"
|
|
base64 = "0.13.0"
|
|
uuid = { version = "1.0", features = ["v4"] }
|