35 lines
576 B
TOML
35 lines
576 B
TOML
[package]
|
|
name = "conduwuit_web"
|
|
categories.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
keywords.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
|
|
|
|
askama = "0.14.0"
|
|
|
|
axum.workspace = true
|
|
futures.workspace = true
|
|
tracing.workspace = true
|
|
rand.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|