2025-04-25 02:47:48 +01:00
[ package ]
name = "conduwuit_web"
description . workspace = true
edition . workspace = true
2026-01-20 21:01:21 +00:00
homepage . workspace = true
2025-04-25 02:47:48 +01:00
license . workspace = true
readme . workspace = true
repository . workspace = true
version . workspace = true
[ lib ]
path = "mod.rs"
crate-type = [
"rlib" ,
# "dylib",
]
[ features ]
[ dependencies ]
2025-05-01 00:38:35 +01:00
conduwuit-build-metadata . workspace = true
2025-05-01 18:46:30 +01:00
conduwuit-service . workspace = true
2026-03-03 13:20:16 -05:00
conduwuit-core . workspace = true
2026-04-27 16:47:08 -04:00
conduwuit-database . workspace = true
conduwuit-api . workspace = true
2026-03-03 13:20:16 -05:00
async-trait . workspace = true
2026-02-12 18:24:24 -05:00
askama . workspace = true
2025-04-25 02:47:48 +01:00
axum . workspace = true
2026-03-03 13:20:16 -05:00
axum-extra . workspace = true
base64 . workspace = true
2025-04-25 02:47:48 +01:00
futures . workspace = true
tracing . workspace = true
rand . workspace = true
2026-04-07 14:40:10 +01:00
assign . workspace = true
2026-03-03 13:20:16 -05:00
ruma . workspace = true
2025-04-25 02:47:48 +01:00
thiserror . workspace = true
2026-02-28 20:32:46 -05:00
tower-http . workspace = true
2026-03-03 13:20:16 -05:00
serde . workspace = true
2026-04-30 14:55:21 -04:00
serde_json . workspace = true
2026-04-27 16:47:08 -04:00
lettre . workspace = true
2026-02-28 20:32:46 -05:00
memory-serve = "2.1.0"
2026-03-03 13:20:16 -05:00
validator = { version = "0.20.0" , features = [ "derive" ] }
2026-03-03 14:30:16 -05:00
tower-sec-fetch = { version = "0.1.2" , features = [ "tracing" ] }
2026-04-27 16:47:08 -04:00
tower-sessions = { version = "0.15.0" , default-features = false , features = [ "axum-core" ] }
tower-sessions-core = { version = "0.15.0" , features = [ "deletion-task" ] }
2026-04-30 08:54:55 -04:00
serde_urlencoded . workspace = true
url . workspace = true
2026-05-06 14:00:41 -04:00
recaptcha-verify = { version = "0.2.0" , default-features = false }
reqwest_recaptcha = { package = "reqwest" , version = "0.12.28" , default-features = false , features = [ "rustls-tls-native-roots-no-provider" ] } # As long as recaptcha-verify's reqwest is outdated
2026-05-07 10:04:46 -04:00
form_urlencoded = "1.2.2"
2026-02-28 20:32:46 -05:00
[ build-dependencies ]
memory-serve = "2.1.0"
2025-04-25 02:47:48 +01:00
[ lints ]
workspace = true