Also, use #[pagetop::test] for test functions. Add actix-web to Cargo.toml only when using Actix Web macros for service configuration.
26 lines
919 B
TOML
26 lines
919 B
TOML
[package]
|
|
name = "drust"
|
|
version = "0.0.3"
|
|
edition = "2021"
|
|
|
|
authors = [
|
|
"Manuel Cillero <manuel@cillero.es>"
|
|
]
|
|
description = """\
|
|
A modern web Content Management System to share your world.\
|
|
"""
|
|
homepage = "https://pagetop.cillero.es"
|
|
repository = "https://github.com/manuelcillero/pagetop"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
[dependencies]
|
|
pagetop = { version = "0.0", path = "../pagetop", features = ["mysql"], default-features = false }
|
|
# Themes.
|
|
pagetop-aliner = { version = "0.0", path = "../pagetop-aliner" }
|
|
pagetop-bootsier = { version = "0.0", path = "../pagetop-bootsier" }
|
|
pagetop-bulmix = { version = "0.0", path = "../pagetop-bulmix" }
|
|
# Modules.
|
|
pagetop-homedemo = { version = "0.0", path = "../pagetop-homedemo" }
|
|
pagetop-admin = { version = "0.0", path = "../pagetop-admin" }
|
|
pagetop-user = { version = "0.0", path = "../pagetop-user" }
|
|
pagetop-node = { version = "0.0", path = "../pagetop-node" }
|