VirtWeb/virtweb_backend/Cargo.toml

50 lines
1.5 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]
log = "0.4.21"
env_logger = "0.11.3"
clap = { version = "4.5.4", features = ["derive", "env"] }
light-openid = { version = "1.0.2", features = ["crypto-wrapper"] }
2023-09-02 06:07:06 +00:00
lazy_static = "1.4.0"
actix = "0.13.3"
actix-web = "4.5.1"
2023-09-02 06:07:06 +00:00
actix-remote-ip = "0.1.0"
actix-session = { version = "0.9.0", features = ["cookie-session"] }
actix-identity = "0.7.1"
actix-cors = "0.7.0"
actix-files = "0.6.5"
actix-web-actors = "4.3.0"
actix-http = "3.6.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.116"
2024-01-02 12:14:11 +00:00
quick-xml = { version = "0.31.0", features = ["serialize", "overlapped-lists"] }
futures-util = "0.3.30"
2024-04-11 00:13:07 +00:00
anyhow = "1.0.82"
2023-09-05 11:19:25 +00:00
actix-multipart = "0.6.1"
tempfile = "3.10.1"
2024-04-20 00:13:11 +00:00
reqwest = { version = "0.12.4", 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"
2024-04-20 00:13:15 +00:00
sysinfo = { version = "0.30.11", features = ["serde"] }
uuid = { version = "1.8.0", features = ["v4", "serde"] }
2023-12-12 15:02:31 +00:00
lazy-regex = "3.1.0"
thiserror = "1.0.58"
image = "0.25.1"
2023-10-18 16:00:25 +00:00
rand = "0.8.5"
bytes = "1.6.0"
tokio = "1.37.0"
futures = "0.3.30"
2023-12-07 16:09:33 +00:00
ipnetwork = "0.20.0"
2024-04-13 00:13:11 +00:00
num = "0.4.2"
rust-embed = { version = "8.3.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"
nix = { version = "0.28.0", features = ["net"] }
2024-04-08 20:19:28 +00:00
jsonwebtoken = "9.3.0"
2024-04-08 20:46:17 +00:00
elliptic-curve = { version = "0.13.8", features = ["pkcs8","pem" ] }
p384 = { version = "0.13.0", features = ["ecdsa", "pkcs8", "pem"] }