39 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "moneymgr_backend"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2024"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
env_logger = "0.11.8"
 | 
						|
log = "0.4.28"
 | 
						|
diesel = { version = "2.2.12", features = ["postgres", "r2d2"] }
 | 
						|
diesel_migrations = "2.2.0"
 | 
						|
clap = { version = "4.5.51", features = ["env", "derive"] }
 | 
						|
actix-web = "4.11.0"
 | 
						|
actix-cors = "0.7.1"
 | 
						|
actix-multipart = "0.7.2"
 | 
						|
actix-remote-ip = "0.1.0"
 | 
						|
actix-session = { version = "0.10.1", features = ["redis-session"] }
 | 
						|
actix-files = "0.6.8"
 | 
						|
lazy_static = "1.5.0"
 | 
						|
anyhow = "1.0.100"
 | 
						|
serde = { version = "1.0.228", features = ["derive"] }
 | 
						|
rust-s3 = "0.36.0-beta.2"
 | 
						|
thiserror = "2.0.17"
 | 
						|
tokio = "1.45.1"
 | 
						|
futures-util = "0.3.31"
 | 
						|
serde_json = "1.0.145"
 | 
						|
light-openid = "1.0.4"
 | 
						|
rand = "0.9.2"
 | 
						|
ipnet = { version = "2.11.0", features = ["serde"] }
 | 
						|
lazy-regex = "3.4.2"
 | 
						|
jwt-simple = { version = "0.12.13", default-features = false, features = ["pure-rust"] }
 | 
						|
mime_guess = "2.0.5"
 | 
						|
rust-embed = { version = "8.7.2" }
 | 
						|
sha2 = "0.11.0-rc.2"
 | 
						|
base16ct = "0.2.0"
 | 
						|
httpdate = "1.0.3"
 | 
						|
chrono = "0.4.42"
 | 
						|
tempfile = "3.20.0"
 | 
						|
zip = "3.0.0"
 | 
						|
rust_xlsxwriter = "0.87.0" |