mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
[package]
|
|
name = "conduwuit_web"
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
path = "mod.rs"
|
|
crate-type = [
|
|
"rlib",
|
|
# "dylib",
|
|
]
|
|
|
|
[features]
|
|
|
|
|
|
[dependencies]
|
|
conduwuit-build-metadata.workspace = true
|
|
conduwuit-service.workspace = true
|
|
conduwuit-core.workspace = true
|
|
conduwuit-database.workspace = true
|
|
conduwuit-api.workspace = true
|
|
async-trait.workspace = true
|
|
askama.workspace = true
|
|
axum.workspace = true
|
|
axum-extra.workspace = true
|
|
base64.workspace = true
|
|
futures.workspace = true
|
|
tracing.workspace = true
|
|
rand.workspace = true
|
|
assign.workspace = true
|
|
ruma.workspace = true
|
|
thiserror.workspace = true
|
|
tower-http.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
lettre.workspace = true
|
|
memory-serve = "2.1.0"
|
|
validator = { version = "0.20.0", features = ["derive"] }
|
|
tower-sec-fetch = { version = "0.1.2", features = ["tracing"] }
|
|
tower-sessions = { version = "0.15.0", default-features = false, features = ["axum-core"] }
|
|
tower-sessions-core = { version = "0.15.0", features = ["deletion-task"] }
|
|
serde_urlencoded.workspace = true
|
|
url.workspace = true
|
|
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
|
|
form_urlencoded = "1.2.2"
|
|
|
|
[build-dependencies]
|
|
memory-serve = "2.1.0"
|
|
|
|
[lints]
|
|
workspace = true
|