VirtWeb/virtweb_backend/Cargo.toml

41 lines
1.1 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"
env_logger = "0.10.0"
2023-10-13 13:27:01 +00:00
clap = { version = "4.4.6", 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-09-04 12:11:56 +00:00
actix-cors = "0.6.4"
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-10-13 13:27:01 +00:00
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
2023-10-04 09:18:50 +00:00
serde-xml-rs = "0.6.0"
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-09-05 14:12:20 +00:00
tempfile = "3.8.0"
2023-10-13 13:27:01 +00:00
reqwest = { version = "0.11.22", features = ["stream"] }
2023-09-06 16:54:38 +00:00
url = "2.4.0"
2023-10-13 13:27:01 +00:00
virt = "0.3.1"
2023-10-04 09:18:50 +00:00
sysinfo = { version = "0.29.10", features = ["serde"] }
uuid = { version = "1.4.1", features = ["v4", "serde"] }
lazy-regex = "3.0.2"
2023-10-13 13:27:01 +00:00
thiserror = "1.0.49"
image = "0.24.7"
2023-10-18 16:00:25 +00:00
rand = "0.8.5"
bytes = "1.5.0"
tokio = "1.32.0"
futures = "0.3.28"