2023-09-01 08:59:53 +00:00
|
|
|
[package]
|
|
|
|
name = "virtweb_backend"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-02 06:07:06 +00:00
|
|
|
log = "0.4.19"
|
|
|
|
env_logger = "0.10.0"
|
|
|
|
clap = { version = "4.3.19", features = ["derive", "env"] }
|
2023-09-05 14:12:20 +00:00
|
|
|
light-openid = { version = "1.0.1", features = ["crypto-wrapper"] }
|
2023-09-02 06:07:06 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
actix-web = "4"
|
|
|
|
actix-remote-ip = "0.1.0"
|
2023-09-02 07:12:36 +00:00
|
|
|
actix-session = { version = "0.7.2", features = ["cookie-session"] }
|
|
|
|
actix-identity = "0.5.2"
|
2023-09-04 12:11:56 +00:00
|
|
|
actix-cors = "0.6.4"
|
2023-09-02 08:28:08 +00:00
|
|
|
serde = { version = "1.0.175", features = ["derive"] }
|
2023-09-04 09:25:03 +00:00
|
|
|
serde_json = "1.0.105"
|
|
|
|
futures-util = "0.3.28"
|
2023-09-05 11:19:25 +00:00
|
|
|
anyhow = "1.0.75"
|
|
|
|
actix-multipart = "0.6.1"
|
2023-09-05 14:12:20 +00:00
|
|
|
tempfile = "3.8.0"
|
|
|
|
reqwest = { version = "0.11.18", features = ["stream"] }
|
|
|
|
url = "2.4.0"
|