VirtWeb/virtweb_backend/Cargo.toml

48 lines
1.3 KiB
TOML
Raw Normal View History

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"
2023-12-12 15:02:31 +00:00
env_logger = "0.10.1"
2023-12-19 11:08:26 +00:00
clap = { version = "4.4.11", 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"
2023-09-06 16:54:38 +00:00
actix = "0.13.1"
2023-09-02 06:07:06 +00:00
actix-web = "4"
actix-remote-ip = "0.1.0"
2023-10-13 13:27:01 +00:00
actix-session = { version = "0.8.0", features = ["cookie-session"] }
actix-identity = "0.6.0"
2023-12-19 11:08:26 +00:00
actix-cors = "0.6.5"
2023-09-06 14:57:38 +00:00
actix-files = "0.6.2"
2023-10-18 16:00:25 +00:00
actix-web-actors = "4.2.0"
actix-http = "3.4.0"
2023-12-12 15:02:31 +00:00
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
2023-10-04 09:18:50 +00:00
serde-xml-rs = "0.6.0"
2024-01-02 12:14:11 +00:00
quick-xml = { version = "0.31.0", features = ["serialize", "overlapped-lists"] }
2023-09-04 09:25:03 +00:00
futures-util = "0.3.28"
2023-09-05 11:19:25 +00:00
anyhow = "1.0.75"
actix-multipart = "0.6.1"
2023-12-12 15:02:31 +00:00
tempfile = "3.8.1"
2023-12-19 11:08:26 +00:00
reqwest = { version = "0.11.23", features = ["stream"] }
2023-12-12 15:02:31 +00:00
url = "2.5.0"
2023-10-13 13:27:01 +00:00
virt = "0.3.1"
2023-12-12 15:02:31 +00:00
sysinfo = { version = "0.29.11", features = ["serde"] }
uuid = { version = "1.6.1", features = ["v4", "serde"] }
lazy-regex = "3.1.0"
2023-12-19 11:08:26 +00:00
thiserror = "1.0.51"
image = "0.24.7"
2023-10-18 16:00:25 +00:00
rand = "0.8.5"
bytes = "1.5.0"
2023-12-19 11:08:26 +00:00
tokio = "1.35.0"
2023-12-12 15:02:31 +00:00
futures = "0.3.29"
2023-12-07 16:09:33 +00:00
ipnetwork = "0.20.0"
2023-12-12 14:45:56 +00:00
num = "0.4.1"
2023-12-19 11:08:26 +00:00
rust-embed = { version = "8.1.0" }
2023-12-12 15:02:31 +00:00
mime_guess = "2.0.4"
2024-01-02 12:14:11 +00:00
dotenvy = "0.15.7"