29 lines
		
	
	
		
			862 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			862 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "remote_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.50", features = ["derive", "env"] }
 | |
| serde = { version = "1.0.228", features = ["derive"] }
 | |
| light-openid = { version = "1.0.4", features = ["crypto-wrapper"] }
 | |
| basic-jwt = "0.3.0"
 | |
| actix-web = "4.11.0"
 | |
| actix-remote-ip = "0.1.0"
 | |
| actix-session = { version = "0.10.1", features = ["cookie-session"] }
 | |
| actix-identity = "0.9.0"
 | |
| actix-cors = "0.7.1"
 | |
| lazy_static = "1.5.0"
 | |
| anyhow = "1.0.100"
 | |
| reqwest = { version = "0.12.24", features = ["json"] }
 | |
| thiserror = "2.0.17"
 | |
| uuid = { version = "1.18.1", features = ["v4", "serde"] }
 | |
| futures-util = "0.3.31"
 | |
| lazy-regex = "3.4.1"
 | |
| mime_guess = "2.0.5"
 | |
| rust-embed = { version = "8.7.2" }
 |