49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "virtweb_backend"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2024"
 | 
						|
 | 
						|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | 
						|
 | 
						|
[dependencies]
 | 
						|
log = "0.4.28"
 | 
						|
env_logger = "0.11.8"
 | 
						|
clap = { version = "4.5.51", features = ["derive", "env"] }
 | 
						|
light-openid = { version = "1.0.4", features = ["crypto-wrapper"] }
 | 
						|
lazy_static = "1.5.0"
 | 
						|
actix = "0.13.5"
 | 
						|
actix-web = "4.11.0"
 | 
						|
actix-remote-ip = "0.1.0"
 | 
						|
actix-session = { version = "0.10.1", features = ["cookie-session"] }
 | 
						|
actix-identity = "0.8.0"
 | 
						|
actix-cors = "0.7.1"
 | 
						|
actix-files = "0.6.8"
 | 
						|
actix-ws = "0.3.0"
 | 
						|
actix-http = "3.11.2"
 | 
						|
serde = { version = "1.0.219", features = ["derive"] }
 | 
						|
serde_json = "1.0.145"
 | 
						|
serde_yml = "0.0.12"
 | 
						|
quick-xml = { version = "0.38.3", features = ["serialize", "overlapped-lists"] }
 | 
						|
futures-util = "0.3.31"
 | 
						|
anyhow = "1.0.100"
 | 
						|
actix-multipart = "0.7.2"
 | 
						|
tempfile = "3.20.0"
 | 
						|
reqwest = { version = "0.12.24", features = ["stream"] }
 | 
						|
url = "2.5.7"
 | 
						|
virt = "0.4.3"
 | 
						|
sysinfo = { version = "0.36.1", features = ["serde"] }
 | 
						|
uuid = { version = "1.17.0", features = ["v4", "serde"] }
 | 
						|
lazy-regex = "3.4.1"
 | 
						|
thiserror = "2.0.17"
 | 
						|
image = "0.25.8"
 | 
						|
rand = "0.9.2"
 | 
						|
tokio = { version = "1.47.1", features = ["rt", "time", "macros"] }
 | 
						|
futures = "0.3.31"
 | 
						|
ipnetwork = { version = "0.21.1", features = ["serde"] }
 | 
						|
num = "0.4.3"
 | 
						|
rust-embed = { version = "8.7.2", features = ["mime-guess"] }
 | 
						|
dotenvy = "0.15.7"
 | 
						|
nix = { version = "0.30.1", features = ["net"] }
 | 
						|
basic-jwt = "0.3.0"
 | 
						|
zip = "4.3.0"
 | 
						|
chrono = "0.4.42" |