pagetop/pagetop/Cargo.toml

79 lines
2 KiB
TOML

[package]
name = "pagetop"
version = "0.0.21"
edition = "2021"
authors = [
"Manuel Cillero <manuel@cillero.es>"
]
description = """\
PageTop is an opinionated framework for using the most stable and popular \
Rust packages to build modular, extensible and configurable web solutions.\
"""
homepage = "https://suitepro.cillero.es/projects/pagetop"
repository = "https://gitlab.com/manuelcillero/pagetop"
license = "Apache-2.0 or MIT"
keywords = [
"web", "cms", "framework", "frontend", "ssr"
]
categories = [
"web-programming", "development-tools", "gui"
]
[dependencies]
concat-string = "1.0.1"
doc-comment = "0.3.3"
figlet-rs = "0.1.3"
futures = "0.3.21"
once_cell = "1.13.0"
paste = "1.0.7"
substring = "1.4.5"
term_size = "0.3.2"
url = "2.2.2"
config_rs = { package = "config", version = "0.11.0", features = ["toml"] }
tracing = "0.1.35"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.14", features = ["json", "env-filter"] }
tracing-unwrap = { version = "0.9.2", default-features = false }
tracing-actix-web = "0.6.0"
fluent-templates = "0.7.1"
unic-langid = "0.9.0"
actix-web = "4.1.0"
actix-web-files = { package = "actix-files", version = "0.6.1" }
actix-web-static-files = "4.0.0"
static-files = "0.2.3"
maud = { git = "https://github.com/lambda-fairy/maud", rev = "e6787cd6", features = ["actix-web"] }
serde = { version = "1.0", features = ["derive"] }
[dependencies.sea-orm]
version = "0.9.1"
features = ["debug-print", "macros", "runtime-async-std-native-tls"]
default-features = false
optional = true
[dependencies.sea-orm-migration]
version = "0.9.1"
optional = true
[features]
default = []
database = ["sea-orm", "sea-orm-migration"]
mysql = ["database", "sea-orm/sqlx-mysql"]
postgres = ["database", "sea-orm/sqlx-postgres"]
sqlite = ["database", "sea-orm/sqlx-sqlite"]
[build-dependencies]
static-files = "0.2.3"
[dev-dependencies]
tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread"] }
[lib]
name = "pagetop"